Setup script - Fix daemon.json entry to add port

This commit is contained in:
Mike Reeves
2018-06-06 12:14:38 -04:00
parent 7c1d3fe6d7
commit 32914ab8a1
2 changed files with 2 additions and 2 deletions

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\"]" >> /etc/docker/daemon.json
echo " \"registry-mirrors\": [\"https://$MSRV:5000\"]" >> /etc/docker/daemon.json
echo "}" >> /etc/docker/daemon.json
}