-
Notifications
You must be signed in to change notification settings - Fork 19
Docker
Dmitri edited this page Sep 7, 2022
·
6 revisions
docker run --rm -ti -p 5000:5000 --name registry registry:2
Start container in the background:
docker run -d -p 5000:5000 --name registry registry:2
Stop container and remove all data:
docker container stop registry && docker container rm -v registry
References: