chore(docker): limit app container log size to 15MB with 3 file rotation

This commit is contained in:
JamesFlare1212
2026-04-06 18:47:31 -04:00
parent 02e0e6cafe
commit ee8cccc755

View File

@@ -7,6 +7,11 @@ services:
- "9091:9091" - "9091:9091"
networks: networks:
- cca_network - cca_network
logging:
driver: "json-file"
options:
max-size: "15m"
max-file: "3"
app: app:
build: build:
@@ -57,6 +62,11 @@ services:
interval: 10s interval: 10s
timeout: 5s timeout: 5s
retries: 5 retries: 5
logging:
driver: "json-file"
options:
max-size: "15m"
max-file: "3"
networks: networks:
cca_network: cca_network: