docker-cheat-sheet icon indicating copy to clipboard operation
docker-cheat-sheet copied to clipboard

New docker CLI conventions

Open debMan opened this issue 5 years ago • 1 comments

The new docker cli convention is migrating from single sub-command to pair of management commands. So, It's better to update this document to new interface.

Examples:

# docker rm my-container
docker container rm my-container

# docker ls
docker container ls

# docker run python
docker container run python

# docker pull python
docker image pull python

debMan avatar May 13 '20 09:05 debMan