You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl https://get.docker.com | sed s/docker-engine/docker-engine-#{docker_version}/ | bash
108
119
fi
109
120
elif [[ "$reinstall" -eq 1 ]]; then
121
+
echo "Installing Docker CE #{docker_version}"
110
122
yum remove docker-engine -y || :
111
123
yum remove docker-ce || :
112
124
yum-config-manager --disable openstack-kilo
@@ -130,7 +142,7 @@ else
130
142
fi
131
143
132
144
# setup docker remote api
133
-
mkdir /etc/systemd/system/docker.service.d
145
+
mkdir -p /etc/systemd/system/docker.service.d
134
146
echo "[Service]" | sudo tee -a /etc/systemd/system/docker.service.d/http-proxy.conf
135
147
echo "Environment=\\\"no_proxy=$CLUSTER_NODE_IPS,127.0.0.1,localhost,netmaster\\\"\\\"http_proxy=$http_proxy\\\"\\\"https_proxy=$https_proxy\\\"" | sudo tee -a /etc/systemd/system/docker.service.d/http-proxy.conf
0 commit comments