diff --git a/Docker-Image-Registry-with-SeaweedFS.md b/Docker-Image-Registry-with-SeaweedFS.md index 74e8ba5..67c05aa 100644 --- a/Docker-Image-Registry-with-SeaweedFS.md +++ b/Docker-Image-Registry-with-SeaweedFS.md @@ -96,11 +96,11 @@ go cmd/registry/main.go serve cmd/registry/config-seaweedfs.yml # Using Registry -Very likely you need to adjust your docker daemon configuration file, assuming the IP address is `192.168.1.3`: +Very likely you need to adjust your docker daemon configuration file, assuming the IP address is `192.168.2.4`: ``` { "insecure-registries":[ - "192.168.1.3:5000" + "192.168.2.4:5000" ] } ``` @@ -109,6 +109,6 @@ Now you can use the harbor running in your `:5000`. ``` $ docker pull nginx:1.13.5-alpine -$ docker tag nginx:1.13.5-alpine 192.168.1.3:5000/nginx:1.13.5-alpine -$ docker push 192.168.1.3:5000/nginx:1.13.5-alpine +$ docker tag nginx:1.13.5-alpine 192.168.2.4:5000/nginx:1.13.5-alpine +$ docker push 192.168.2.4:5000/nginx:1.13.5-alpine ``` \ No newline at end of file