0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2025-02-17 23:45:36 -05:00

Add -it flags

This commit is contained in:
Josh Dolitsky 2020-01-27 09:47:08 -06:00 committed by GitHub
parent 98c3237d2f
commit 9863c80bc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,10 +69,10 @@ Then run the image with your preferred container runtime:
```
# with podman
podman run --rm -p 5000:5000 -v $(pwd)/registry:/var/lib/registry zot:latest
podman run --rm -it -p 5000:5000 -v $(pwd)/registry:/var/lib/registry zot:latest
# with docker
docker run --rm -p 5000:5000 -v $(pwd)/registry:/var/lib/registry zot:latest
docker run --rm -it -p 5000:5000 -v $(pwd)/registry:/var/lib/registry zot:latest
```
This will run a registry at http://localhost:5000, storing content at `./registry`