Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-18 00:18:39 +00:00
parent bda9e5a061
commit 0df0c010e8
101 changed files with 941 additions and 154 deletions

View File

@@ -10,23 +10,23 @@ source: https://github.com/tldr-pages/tldr.git
- List currently running Docker containers:
`docker container ls`
`docker {{[ps|container ls]}}`
- Start one or more stopped containers:
`docker container start {{container1_name}} {{container2_name}}`
`docker {{[start|container start]}} {{container1_name}} {{container2_name}}`
- Kill one or more running containers:
`docker container kill {{container_name}}`
`docker {{[kill|container kill]}} {{container_name}}`
- Stop one or more running containers:
`docker container stop {{container_name}}`
`docker {{[stop|container stop]}} {{container_name}}`
- Pause all processes within one or more containers:
`docker container pause {{container_name}}`
`docker {{[pause|container pause]}} {{container_name}}`
- Display detailed information on one or more containers:
@@ -34,8 +34,8 @@ source: https://github.com/tldr-pages/tldr.git
- Export a container's filesystem as a tar archive:
`docker container export {{container_name}}`
`docker {{[export|container export]}} {{container_name}}`
- Create a new image from a container's changes:
`docker container commit {{container_name}}`
`docker {{[commit|container commit]}} {{container_name}}`