This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
basic_commands [2017/05/05 15:21] pawel created |
basic_commands [2018/05/08 08:46] (current) root |
||
|---|---|---|---|
| Line 3: | Line 3: | ||
| | docker ps | display all active docker containers | | | docker ps | display all active docker containers | | ||
| | docker rm -f {container_name} | force quit container by container name | | | docker rm -f {container_name} | force quit container by container name | | ||
| + | | docker images | list all docker images currently on the system | | ||
| + | | docker logs {container_id} | show logs for the container | | ||
| + | | docker exec -it {container_id} /bin/bash | log into the bash window for the docker container that is running | | ||
| + | | docker stats | show statistics (like TOP) of your docker container(s) running | | ||