DEV Community

Cover image for The missing Docker Cheatsheet

The missing Docker Cheatsheet

Gábor Soós on February 18, 2020

Docker is becoming increasingly popular among software developers as a container platform. Containers package software in a format that can run iso...
Collapse
 
jannikwempe profile image
Jannik Wempe

Awesome, thanks. It's is nice overview for the most used commands.

Just want to mention that some commands are actually the old syntax. Yes, they are shorter but I prefer the newer syntax, since they make more sense to me and are more descriptive. Examples:

docker image build # instead of docker build
docker container ls # instead of docker ps
docker container stop # instead of docker stop

Maybe you want to mention that 🆒

Collapse
 
sonicoder profile image
Gábor Soós

Thanks for the feedback, obviously more descriptive than the old ones 👍