Skip to content

Commit

Permalink
tty: false for docker/compose#9288
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan committed Mar 22, 2022
1 parent 6f1ddd8 commit dc64569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
dockerfile: ./dev/django.Dockerfile
command: ["./manage.py", "runserver", "0.0.0.0:8000"]
# Log printing via Rich is enhanced by a TTY
# tty: true
tty: false
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/django-project
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
minio:
image: minio/minio:latest
# When run with a TTY, minio prints credentials on startup
tty: true
tty: false
command: ["server", "/data", "--console-address", ":${DOCKER_MINIO_CONSOLE_PORT-9001}"]
environment:
MINIO_ROOT_USER: minioAccessKey
Expand Down

0 comments on commit dc64569

Please sign in to comment.