Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-11 00:21:58 +00:00
parent 9b844dc12b
commit f3773777cf
36 changed files with 230 additions and 99 deletions

View File

@@ -6,7 +6,6 @@ source: https://github.com/tldr-pages/tldr.git
# podman build
> Daemonless tool for building container images.
> Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`.
> More information: <https://docs.podman.io/en/latest/markdown/podman-build.1.html>.
- Create an image using a `Dockerfile` or `Containerfile` in the specified directory:
@@ -15,11 +14,11 @@ source: https://github.com/tldr-pages/tldr.git
- Create an image with a specified tag:
`podman build --tag {{image_name:version}} {{path/to/directory}}`
`podman build {{[-t|--tag]}} {{image_name:version}} {{path/to/directory}}`
- Create an image from a non-standard file:
`podman build --file {{Containerfile.different}} .`
`podman build {{[-f|--file]}} {{Containerfile.different}} .`
- Create an image without using any previously cached images:
@@ -27,4 +26,4 @@ source: https://github.com/tldr-pages/tldr.git
- Create an image suppressing all output:
`podman build --quiet {{path/to/directory}}`
`podman build {{[-q|--quiet]}} {{path/to/directory}}`