Docker cheat sheet
Follow this site for more details: https://docs.docker.com/
Basics
Show a list of available images:
$ docker imagesShow a list of containers:
$ docker container lsOpen Docker bash:
$ docker exec -it <docker container> bashShow docker container logs:
$ docker logs <docker container> Last updated
Was this helpful?