1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/docker.md
SeWook Oh 5d974c710f
docker, ollama, history, tldr: fix mnemonics (#12762)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-05-27 19:41:56 +02:00

37 lines
875 B
Markdown

# docker
> Manage Docker containers and images.
> Some subcommands such as `docker run` have their own usage documentation.
> More information: <https://docs.docker.com/engine/reference/commandline/cli/>.
- List all Docker containers (running and stopped):
`docker ps --all`
- Start a container from an image, with a custom name:
`docker run --name {{container_name}} {{image}}`
- Start or stop an existing container:
`docker {{start|stop}} {{container_name}}`
- Pull an image from a Docker registry:
`docker pull {{image}}`
- Display the list of already downloaded images:
`docker images`
- Open an [i]nteractive [t]ty with Bourne shell (`sh`) inside a running container:
`docker exec -it {{container_name}} {{sh}}`
- Remove a stopped container:
`docker rm {{container_name}}`
- Fetch and follow the logs of a container:
`docker logs -f {{container_name}}`