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/
This commit is contained in:
Felix Eckhofer
2021-09-14 16:35:01 +02:00
committed by GitHub
parent 5f28c7ace7
commit 923fbac5b0

View File

@ -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