Skip to content

Commit

Permalink
ci: rotate docker logs
Browse files Browse the repository at this point in the history
  • Loading branch information
vas3k committed Aug 25, 2023
1 parent 0447e76 commit 017a84e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ services:
- queue
ports:
- "127.0.0.1:8814:8814"
logging:
driver: "json-file"
options:
max-size: "100M"

queue:
<<: *app
Expand All @@ -40,6 +44,10 @@ services:
- postgres
- redis
ports: []
logging:
driver: "json-file"
options:
max-size: "100M"

bot:
<<: *app
Expand All @@ -51,6 +59,10 @@ services:
- redis
ports:
- "8816:8816"
logging:
driver: "json-file"
options:
max-size: "100M"

cron:
<<: *app
Expand All @@ -61,6 +73,10 @@ services:
- postgres
- redis
ports: []
logging:
driver: "json-file"
options:
max-size: "100M"

postgres:
image: postgres:12
Expand Down

0 comments on commit 017a84e

Please sign in to comment.