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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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