README.md 521 B

HTTP registry (insecure)

Setup

On the machine hosting the registry, run :

cd http-insecure
docker-compose up -d

Use

On the local machine, the registry can be used as-is.

On the LAN's machines, /etc/docker/daemon.json has to contain (run systemctl restart docker after) :

{ "insecure-registries":["<machine-name>:5000"] }

Then upload with the following command :

docker tag <image-name> <machine-name>:5000/<image-name>
docker push <machine-name>:5000/<image-name>