21 lines
323 B
Markdown
21 lines
323 B
Markdown
# Docker Registry Configuration
|
|
|
|
more details on: https://docs.docker.com/registry/deploying/
|
|
|
|
## Registry Usage
|
|
|
|
its really simply:
|
|
|
|
```bash
|
|
docker pull ubuntu
|
|
|
|
docker tag ubuntu 00x097/ubuntu
|
|
|
|
docker push 0.0.0.0:5050/ubuntu
|
|
```
|
|
|
|
if you use https-portal, check out this:
|
|
|
|
```bash
|
|
docker push docker-registry.tk/ubuntu
|
|
``` |