Files
Registry/docker-compose.yml
renzaspiras 893f5b50ef fix: rebuild without cache and simplify Dockerfile
- Force no-cache build in docker-compose
- Simplify Dockerfile to use Alpine package manager
- Clean up configuration
2025-11-05 09:26:12 -08:00

25 lines
439 B
YAML

version: '3.8'
services:
registry:
build:
context: .
dockerfile: Dockerfile
no-cache: true
container_name: registry
restart: unless-stopped
expose:
- "5000"
volumes:
- registry-data:/var/lib/registry
- ./config.yml:/etc/docker/registry/config.yml
networks:
- registry-network
networks:
registry-network:
driver: bridge
volumes:
registry-data:
driver: local