diff options
author | 2020-02-16 10:48:51 -0800 | |
---|---|---|
committer | 2020-02-16 10:48:51 -0800 | |
commit | df3941abdefca572cc73817b420f7e430c9a2b0f (patch) | |
tree | 8640b8be0cc9cd11ab67174509db10a66e564d03 | |
parent | Add vscode project folder to gitignore (diff) |
Fix #329 missing manage.py & Django logs
Fixed by allocating a pseudo-tty to the web service in Docker Compose.
-rw-r--r-- | docker-compose.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 3884a41f..73d2ff85 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -34,6 +34,7 @@ services: - "127.0.0.1:8000:8000" depends_on: - postgres + tty: true volumes: - .:/app:ro - staticfiles:/var/www/static |