Files
nas-tools/cc-connect/docker-compose.yml
T
Gan, Jimmy 76c10a6c07 fix: use compose-compatible env_file format
Switch env_file declarations back to string list syntax so Synology's docker compose parser accepts the LiteLLM and cc-connect compose files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-02 01:11:58 +08:00

22 lines
485 B
YAML

services:
cc-connect:
image: chenhg5/cc-connect:latest
container_name: cc-connect
restart: unless-stopped
labels:
- "com.centurylinklabs.watchtower.enable=true"
env_file:
- .env
volumes:
- ./config.toml:/app/config.toml:ro
command:
- "--config"
- "/app/config.toml"
extra_hosts:
- "host.docker.internal:host-gateway"
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"