## HTTP registry (insecure) ### Setup On the machine hosting the registry, run : ```sh 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) : ```json { "insecure-registries":[":5000"] } ``` Then upload with the following command : ```sh docker tag :5000/ docker push :5000/ ```