summaryrefslogtreecommitdiffstats
path: root/juju/k8s
diff options
context:
space:
mode:
Diffstat (limited to 'juju/k8s')
-rwxr-xr-xjuju/k8s/clearwater/deploy_clearwater_k8s.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/juju/k8s/clearwater/deploy_clearwater_k8s.sh b/juju/k8s/clearwater/deploy_clearwater_k8s.sh
index 695f5083..8a4160a4 100755
--- a/juju/k8s/clearwater/deploy_clearwater_k8s.sh
+++ b/juju/k8s/clearwater/deploy_clearwater_k8s.sh
@@ -18,7 +18,13 @@
function setup_docker() {
echo "Installing docker..."
- sudo apt-get install -y docker.io
+ sudo apt-get update
+ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
+ sudo add-apt-repository \
+ "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
+ sudo apt-get update
+ sudo apt-get install docker-ce
sudo docker login --username="aakashkt" --password="joid123"
}