Skip to content

Instantly share code, notes, and snippets.

View iMilad's full-sized avatar
🤷‍♂️
!@%$&?

Milad Khakpour iMilad

🤷‍♂️
!@%$&?
View GitHub Profile
@iMilad
iMilad / docker-cli-tips-and-tricks.md
Created October 23, 2020 07:14 — forked from BretFisher/docker-cli-tips-and-tricks.md
Docker CLI Tips and Tricks
@iMilad
iMilad / install-docker-kube.sh
Last active August 28, 2020 07:53 — forked from chadmcrowell/install-docker-kube.sh
Installing the Kubernetes Cluster - From CKA Course - Linux Academy
# Get the Docker gpg key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# Add the Docker repository
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
# Get the Kubernetes gpg key
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -