mirror of https://github.com/CrimsonTome/tldr.git
21 lines
356 B
Markdown
21 lines
356 B
Markdown
# 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}}`
|