Skip to content

Instantly share code, notes, and snippets.

@ttsubono
Last active August 29, 2017 08:02
Show Gist options
  • Save ttsubono/fddcf09e31010dfdbcda1aa6b3dc2229 to your computer and use it in GitHub Desktop.
Save ttsubono/fddcf09e31010dfdbcda1aa6b3dc2229 to your computer and use it in GitHub Desktop.

= |

Container (info)

docker ps                  List running containers
docker ps -a               List all containers
docker diff <Container>    Show changes to files
docker inspect <Container> Show container info
docker logs <Container>    Show logs
docker port <Container>    List port mapping
docker top <Container>     Show running proceess
docker stats               Show live resource usage statistics

Container (control)

docker exec -it <Container> bash   Login
docker start <Container>           Start
docker stop <Container>            Stop
docker rm <Container>              Remove

Imaege (control)

docker rmi <IMAGE_ID>|<REPOSITOTY:TAG>   Remove
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment