docker ps
--docker exec -it container name bash
Type the command in the terminal.
$ docker ps
Check the place of NAMES
. This is the container name.
$ docker exec -it container name bash
The option -it
is a combination of -i
and -t
, but the details are in the following article.
** What is Docker exec -it ** https://hacknote.jp/archives/56621/
Recommended Posts