From 923fbac5b0948de0021d237d60190b6576d76b17 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer Date: Tue, 14 Sep 2021 16:35:01 +0200 Subject: [PATCH] website/docs: Fix docker-compose example (#1395) `docker-compose exec` by default allocates a tty and does not support `-it`. See https://docs.docker.com/compose/reference/exec/ --- website/docs/troubleshooting/emails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/troubleshooting/emails.md b/website/docs/troubleshooting/emails.md index 71efad742..31fcb6008 100644 --- a/website/docs/troubleshooting/emails.md +++ b/website/docs/troubleshooting/emails.md @@ -13,7 +13,7 @@ If you omit the `-s` parameter, the email will be sent using the global settings To run this command with docker-compose, use ``` -docker-compose exec -it worker ./manage.py test_email [...] +docker-compose exec worker ./manage.py test_email [...] ``` To run this command with Kubernetes, use