Files
Registry/docker-compose.yml
renzaspiras fa2df647c6 refactor: simplify registry to basic setup
- Reduce to only registry:2 image
- Remove unnecessary configuration files
- Add basic .gitignore and env.example
- Keep only essential docker-compose configuration
2025-11-05 04:30:59 -08:00

21 lines
330 B
YAML

version: '3.8'
services:
registry:
image: registry:2
container_name: registry
restart: unless-stopped
expose:
- "5000"
volumes:
- registry-data:/var/lib/registry
networks:
- registry-network
networks:
registry-network:
driver: bridge
volumes:
registry-data:
driver: local