Skip to content

Commit e6f4ca1

Browse files
authoredMay 1, 2023
Merge pull request #20 from BigBitBusInc/fix/docker-install
install docker via script
2 parents e642fd2 + 7a5edeb commit e6f4ca1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎code/local-kubernetes-cluster-installation/install-microk8s-on-ubuntu.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ apt-get install unzip
5050

5151
# Note - we pegged the Kubernetes version here
5252
snap install microk8s --classic --channel=1.19
53-
snap install --stable docker
53+
curl -fsSL https://get.docker.com -o get-docker.sh
54+
sh get-docker.sh
5455
snap install kubectl --classic --channel=1.19
5556
snap install helm --classic --channel=3.4
5657
sleep 60 # Sometimes microk8s needs time to stabilize

0 commit comments

Comments
 (0)
Please sign in to comment.