Updated Docker Image Registry with SeaweedFS (markdown)

Chris Lu 2021-10-31 21:21:07 -07:00
parent ff20ce46cb
commit 9cc8cab77b

@ -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 `<ip>: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
```