docker ps
and note down the container IDdocker exec -it <containerid> <app>
- useful to make
<app>
be/bin/sh
orpython
Alternatively:
- useful to make
docker images
and note down the container namedocker run -it <containername> /bin/sh
. Note if you want programs like Vim, you must install it in your docker-file