1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:38:01 +01:00
tldr/pages/common/docker.md

21 lines
356 B
Markdown
Raw Normal View History

# docker
> Docker allows you to package an application with all of its
> dependencies into a standardized unit for software development.
- List of running docker containers
`docker ps`
- List all docker containers (running and stopped)
`docker ps -a`
- Start a container
`docker start {{container}}`
- Stop a container
`docker stop {{container}}`