Unsafe Username/Password protected registry for any use that requires you to have a docker registry locally
version: '2'
services:
registry:
container_name: registry
build: .
ports:
- "5000:5000"
version: '2'
services:
registry:
container_name: registry
image: ipepe/unsafe-registry
ports:
- "5000:5000"
docker run -d -p 5000:5000 --name registry ipepe/unsafe-registry
This registry is answer to hosting docker images locally in kamal deployments. This is config:
registry:
server: localhost:5000
username: 'unsafe'
password: 'R3g1stry'