Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove use of "-T" for docker-compose exec interactive use (#2104)
I was doing some testing and noticed that line 27 in `docker-maintain-drupal.md` is using the `-T` flag for `docker-compose exec` which would not allow for interactive shell use as expected. From the man page... ``` Usage: docker compose exec [options] [-e KEY=VAL...] [--] SERVICE COMMAND [ARGS...] ... -T, --no-TTY docker compose exec Disable pseudo-TTY allocation. By default docker compose exec allocates a TTY. ... ``` Seem that on the other examples of `docker-compose exec -T...` are fine on the rest of the page, since they are executing non-interactive/specific shell commands.
- Loading branch information