Setup script - Fix daemon.json escape

This commit is contained in:
Mike Reeves
2018-06-06 13:58:55 -04:00
parent 89b3d7c05e
commit 45807d1ee4

View File

@@ -223,7 +223,7 @@ docker_registry() {
mkdir -p /etc/docker
# Make the host use the master docker registry
echo "{" > /etc/docker/daemon.json
echo " \"registry-mirrors\": [\"https://$MSRV:5000\"]" >> /etc/docker/daemon.json
echo " \"registry-mirrors\": [\"https://$MSRV\:5000\"]" >> /etc/docker/daemon.json
echo "}" >> /etc/docker/daemon.json
}