docker-compose.yml 259 B

123456789101112
  1. version: "3"
  2. services:
  3. ghcr:
  4. image: stilleshan/registry-proxy
  5. volumes:
  6. - ./data:/var/lib/registry
  7. - /etc/localtime:/etc/localtime
  8. ports:
  9. - 5000:5000
  10. environment:
  11. - PROXY_REMOTE_URL=https://ghcr.io
  12. restart: always