cache-proxy/compose.yaml

22 lines
521 B
YAML
Raw Permalink Normal View History

2024-12-18 14:18:47 +08:00
services:
cache-proxy:
2025-03-03 00:26:29 +08:00
image: ${REPOSITORY:-git.jeffthecoder.xyz}/${OWNER:-public}/cache-proxy:${VERSION:-latest}
2025-02-19 17:49:35 +08:00
build:
args:
GOPROXY: ${GOPROXY:-direct}
2025-02-23 12:07:05 +08:00
ALPINE_MIRROR: ${ALPINE_MIRROR:-https://mirrors.ustc.edu.cn}
2025-03-03 00:26:29 +08:00
TAGS: pprof
2024-12-18 14:18:47 +08:00
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-03-03 00:26:29 +08:00
- SENTRY_DSN=${SENTRY_DSN}
2025-02-19 17:49:35 +08:00
- LOG_LEVEL=debug
2025-03-03 00:26:29 +08:00
env_file:
- path: .env
required: false