Compare commits

...

2 Commits

Author SHA1 Message Date
JamesFlare1212
ee8cccc755 chore(docker): limit app container log size to 15MB with 3 file rotation 2026-04-06 18:47:31 -04:00
JamesFlare1212
02e0e6cafe chore(docker): limit app container log size to 15MB with 3 file rotation 2026-04-06 18:45:20 -04:00

View File

@@ -1,11 +1,17 @@
services:
# Warp Socks Proxy Service (Internal only - no external ports exposed)
warp-proxy:
image: ghcr.io/mon-ius/docker-warp-socks:v5
container_name: dsas-cca-warp-proxy
restart: unless-stopped
ports:
- "9091:9091"
networks:
- cca_network
logging:
driver: "json-file"
options:
max-size: "15m"
max-file: "3"
app:
build:
@@ -30,13 +36,17 @@ services:
condition: service_healthy
warp-proxy:
condition: service_started
required: false
volumes:
- ./services/cookies.json:/usr/src/app/services/cookies.json
networks:
- cca_network
extra_hosts:
- "host.docker.internal:host-gateway"
logging:
driver: "json-file"
options:
max-size: "15m"
max-file: "3"
redis:
image: "redis:8.0-alpine"
@@ -52,9 +62,11 @@ services:
interval: 10s
timeout: 5s
retries: 5
volumes:
redis_data:
logging:
driver: "json-file"
options:
max-size: "15m"
max-file: "3"
networks:
cca_network: