When I try to execute a command inside the Docker container with Jenkins, the following error appears:
the input device is not a TTY
Solution:
Use instead:
docker exec -it
following:
docker exec --tty
When I try to execute a command inside the Docker container with Jenkins, the following error appears:
the input device is not a TTY
Use instead:
docker exec -it
following:
docker exec --tty