Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 545 Bytes

README.md

File metadata and controls

29 lines (15 loc) · 545 Bytes

docker-repository

Run

git clone https://github.com/13paulmurith/docker-registry.git

docker-compose up -d

Access to the web ui : http://localhost:8081

Debug

docker-compose logs

Configure insecure registries

nano /lib/systemd/system/docker.service

Edit following line

ExecStart=/usr/bin/dockerd --insecure-registry {registry-ip}:5000

Pushing local image

docker image ls

docker image tag {local-image} {registry-host}:5000/{image-name}:{tag}

docker push {registry-host}:5000/{image-name}:{tag}