cache-proxy/compose.yaml

22 lines
525 B
YAML
Raw Normal View History

2024-12-18 14:18:47 +08:00
services:
cache-proxy:
2025-02-19 17:49:35 +08:00
image: 100.64.0.2:3000/guochao/cache-proxy
build:
args:
GOPROXY: ${GOPROXY:-direct}
2024-12-18 14:18:47 +08:00
pull_policy: always
restart: always
volumes:
2025-01-30 23:58:59 +08:00
- ./config.yaml:/config.yaml:ro
2024-12-18 14:18:47 +08:00
- ./data:/data
ports:
- 8881:8881
environment:
2025-01-30 23:58:59 +08:00
- HTTPS_PROXY=http://100.64.0.23:7890
- HTTP_PROXY=http://100.64.0.23:7890
- ALL_PROXY=http://100.64.0.23:7890
2025-01-31 00:03:33 +08:00
- SENTRY_DSN=http://3b7336602c77427d96318074cd86ee04@100.64.0.2:8000/2
2025-02-19 17:49:35 +08:00
- LOG_LEVEL=debug