Skip to content

Commit

Permalink
Fix colors not showing up in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobichaud committed Feb 4, 2023
1 parent ee710cc commit 63bdb4d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ services:
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
tty: true # needed for colors to show in console logs
ports:
- "8000:8000"
command: /start
Expand Down Expand Up @@ -47,8 +48,9 @@ services:
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres

command: /start-celeryworker
tty: true # needed for colors to show in console logs

celerybeat:
image: django_structlog_demo_project_local_django
Expand All @@ -60,8 +62,9 @@ services:
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres

command: /start-celerybeat
tty: true # needed for colors to show in console logs

flower:
image: django_structlog_demo_project_local_django
Expand Down

0 comments on commit 63bdb4d

Please sign in to comment.