Files
Registry/docker-compose.yml
renzaspiras fbd72c7748 fix: remove invalid no-cache property
- Remove invalid no-cache from docker-compose.yml
- Clean up Dockerfile syntax
2025-11-05 09:27:20 -08:00

24 lines
418 B
YAML

version: '3.8'
services:
registry:
build:
context: .
dockerfile: Dockerfile
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