A sample Container to run a private Docker Registry with repositor.io
4.1K
As per Default the Registry Server will be reachable on your physical Docker Host at Port #3000 (0.0.0.0:3000). So use the IP or Hostname of your Server instead of myserver in the examples below.
If you need / want another Port change the Portmapping -p 3000:3000 in the docker run Command.
See also https://docs.docker.com/reference/commandline/cli/#port.
add this option to your local Docker Daemon:
--insecure-registry myserver:3000
# docker run -d -p 3000:3000 --name repositorio-docker jbrunk/repositorio-docker
# docker login -e [email protected] -p password -u some-user myserver:3000/v1/
# docker tag debian myserver:3000/debian
# docker push myserver:3000/debian
# docker pull myserver:3000/debian
See also: http://repositor.io/
Content type
Image
Digest
sha256:936f515ea…
Size
305.3 MB
Last updated
almost 11 years ago
docker pull jbrunk/repositorio-docker