1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Fri, 21 Nov 2025 06:20:40 -0500
Subject: Cleanup manpage formatting
Forwarded: https://github.com/containers/container-libs/pull/504
Also address most troff issues. Not all of them are easy, in particular those
manpages with long urls and examples that include digests are difficult to
render in traditional manpages.
Add troff renderering to the Manpage to surface those troff issues more easily
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
---
docs/Containerfile.5.md | 38 ++++++------
docs/Makefile | 1 +
docs/containerignore.5.md | 76 +++++++++++++++---------
docs/containers.conf.5.md | 143 +++++++++++++++++++++++++++++-----------------
4 files changed, 158 insertions(+), 100 deletions(-)
diff --git a/docs/Containerfile.5.md b/docs/Containerfile.5.md
index 3e2bd7a..fb2d935 100644
--- a/docs/Containerfile.5.md
+++ b/docs/Containerfile.5.md
@@ -117,23 +117,23 @@ Current supported mount TYPES are bind, cache, secret and tmpfs.
Common Options:
- · src, source: mount source spec for bind and volume. Mandatory for bind. If `from` is specified, `src` is the subpath in the `from` field.
+ * src, source: mount source spec for bind and volume. Mandatory for bind. If `from` is specified, `src` is the subpath in the `from` field.
- · dst, destination, target: mount destination spec.
+ * dst, destination, target: mount destination spec.
- · ro, read-only: true (default) or false.
+ * ro, read-only: true (default) or false.
Options specific to bind:
- · bind-propagation: shared, slave, private, rshared, rslave, or rprivate(default). See also mount(2).
+ * bind-propagation: shared, slave, private, rshared, rslave, or rprivate(default). See also mount(2).
- . bind-nonrecursive: do not setup a recursive bind mount. By default it is recursive.
+ * bind-nonrecursive: do not setup a recursive bind mount. By default it is recursive.
- · from: stage or image name for the root of the source. Defaults to the build context.
+ * from: stage or image name for the root of the source. Defaults to the build context.
- · relabel=shared, z: Relabels src content with a shared label.
+ * relabel=shared, z: Relabels src content with a shared label.
- . relabel=private, Z: Relabels src content with a private label.
+ * relabel=private, Z: Relabels src content with a private label.
Labeling systems like SELinux require proper labels on the bind mounted content mounted into a container. Without a label, the security system might prevent the processes running in side the container from using the content. By default, container engines do not change the labels set by the OS. The relabel flag tells the engine to relabel file objects on the shared mountz.
@@ -143,31 +143,31 @@ Current supported mount TYPES are bind, cache, secret and tmpfs.
Relabeling walks the file system under the mount and changes the label on each file, if the mount has thousands of inodes, this process takes a long time, delaying the start of the container.
- · rw, read-write: allows writes on the mount.
+ * rw, read-write: allows writes on the mount.
Options specific to tmpfs:
- · tmpfs-size: Size of the tmpfs mount in bytes. Unlimited by default in Linux.
+ * tmpfs-size: Size of the tmpfs mount in bytes. Unlimited by default in Linux.
- · tmpfs-mode: File mode of the tmpfs in octal. (e.g. 700 or 0700.) Defaults to 1777 in Linux.
+ * tmpfs-mode: File mode of the tmpfs in octal. (e.g. 700 or 0700.) Defaults to 1777 in Linux.
- · tmpcopyup: Path that is shadowed by the tmpfs mount is recursively copied up to the tmpfs itself.
+ * tmpcopyup: Path that is shadowed by the tmpfs mount is recursively copied up to the tmpfs itself.
Options specific to cache:
- · id: Create a separate cache directory for a particular id.
+ * id: Create a separate cache directory for a particular id.
- · mode: File mode for new cache directory in octal. Default 0755.
+ * mode: File mode for new cache directory in octal. Default 0755.
- · ro, readonly: read only cache if set.
+ * ro, readonly: read only cache if set.
- · uid: uid for cache directory.
+ * uid: uid for cache directory.
- · gid: gid for cache directory.
+ * gid: gid for cache directory.
- · from: stage name for the root of the source. Defaults to host cache directory.
+ * from: stage name for the root of the source. Defaults to host cache directory.
- · rw, read-write: allows writes on the mount.
+ * rw, read-write: allows writes on the mount.
**RUN --network**
diff --git a/docs/Makefile b/docs/Makefile
index 97fe626..1b9beb3 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -7,6 +7,7 @@ docs: $(patsubst %.md,%,$(wildcard *.md))
%.5: %.5.md
$(GOMD2MAN) -in $^ -out $@
+ groff -Tascii $@ > /dev/null
.PHONY: install
install:
diff --git a/docs/containerignore.5.md b/docs/containerignore.5.md
index b26ef11..7ee0cd4 100644
--- a/docs/containerignore.5.md
+++ b/docs/containerignore.5.md
@@ -1,4 +1,4 @@
-% ".containerignore" "28" "Sep 2021" "" "Container User Manuals"
+% ".containerignore" "5" "Sep 2021" "" "Container User Manuals"
# NAME
@@ -6,23 +6,27 @@
# INTRODUCTION
-Before container engines build an image, they look for a file named .containerignore or .dockerignore in the root
-context directory. If one of these file exists, the CLI modifies the context to exclude files and
-directories that match patterns specified in the file. This avoids adding them to images using the ADD or COPY
-instruction.
-
-The CLI interprets the .containerignore or .dockerignore file as a newline-separated list of patterns similar to
-the file globs of Unix shells. For the purposes of matching, the root of the context is considered to be both the
-working and the root directory. For example, the patterns /foo/bar and foo/bar both exclude a file or directory
-named bar in the foo subdirectory of PATH or in the root of the git repository located at URL. Neither excludes
+Before container engines build an image, they look for a file named
+`.containerignore` or `.dockerignore` in the root context directory. If one of
+these file exists, the CLI modifies the context to exclude files and
+directories that match patterns specified in the file. This avoids adding them
+to images using the ADD or COPY instruction.
+
+The CLI interprets the `.containerignore` or `.dockerignore` file as a
+newline-separated list of patterns similar to the file globs of Unix
+shells. For the purposes of matching, the root of the context is considered to
+be both the working and the root directory. For example, the patterns `/foo/bar`
+and `foo/bar` both exclude a file or directory named bar in the foo subdirectory
+of PATH or in the root of the git repository located at URL. Neither excludes
anything else.
-If a line in .containerignore or .dockerignore file starts with # in column 1, then this line is considered as a
-comment and is ignored before interpreted by the CLI.
+If a line in `.containerignore` or `.dockerignore` file starts with `#` in
+column 1, then this line is considered as a comment and is ignored before
+interpreted by the CLI.
# EXAMPLES
-Here is an example .containerignore file:
+Here is an example `.containerignore` file:
```
# comment
@@ -33,6 +37,7 @@ temp?
This file causes the following build behavior:
Rule Behavior
+
```
# comment Ignored.
*/temp* Exclude files and directories whose names start with temp in any immediate subdirectory of the root.
@@ -41,22 +46,33 @@ For example, the plain file /somedir/temporary.txt is excluded, as is the direct
root. For example, /somedir/subdir/temporary.txt is excluded.
temp? Exclude files and directories in the root directory whose names are a one-character extension of temp. For example, /tempa and /tempb are excluded.
```
-Matching is done using Go’s filepath.Match rules. A preprocessing step removes leading and trailing whitespace and
-eliminates . and .. elements using Go’s filepath.Clean. Lines that are blank after preprocessing are ignored.
-Beyond Go’s filepath.Match rules, Docker also supports a special wildcard string ** that matches any number of
-directories (including zero). For example, **/*.go will exclude all files that end with .go that are found in all
-directories, including the root of the build context.
+Matching is done using the golang `path/filepath` package.
+
+Match rules:
+ * A preprocessing step removes leading and trailing whitespace and eliminates
+ . and .. elements using the golang `path/filepath` package.
+ * Lines that are blank after preprocessing are ignored.
+
+Beyond the `filepath.Match` rules, Docker also supports a special wildcard
+string `**` that matches any number of directories (including zero). For
+example, `**/*.go` will exclude all files that end with `.go` that are found in
+all directories, including the root of the build context.
+
+Lines starting with `!` (exclamation mark) can be used to make exceptions to
+exclusions. The following is an example .containerignore file that uses this
+mechanism:
-Lines starting with ! (exclamation mark) can be used to make exceptions to exclusions. The following is an example .containerignore file that uses this mechanism:
```
*.md
!README.md
```
All markdown files except README.md are excluded from the context.
-The placement of ! exception rules influences the behavior: the last line of the .containerignore that matches a
-particular file determines whether it is included or excluded. Consider the following example:
+The placement of `!` exception rules influences the behavior: the last line of
+the `.containerignore` that matches a particular file determines whether it is
+included or excluded. Consider the following example:
+
```
*.md
!README*.md
@@ -65,20 +81,24 @@ README-secret.md
No markdown files are included in the context except README files other than README-secret.md.
Now consider this example:
+
```
*.md
README-secret.md
!README*.md
```
-All of the README files are included. The middle line has no effect because !README*.md matches README-secret.md and
-comes last.
-You can even use the .containerignore file to exclude the Containerfile or Dockerfile and .containerignore files.
-These files are still sent to the daemon because it needs them to do its job. But the ADD and COPY instructions do
-not copy them to the image.
+All of the README files are included. The middle line has no effect because
+`!README*.md` matches `README-secret.md` and comes last.
+
+You can even use the .containerignore file to exclude the `Containerfile` or
+`Dockerfile` and `.containerignore` files. These files are still sent to the
+daemon because it needs them to do its job. But the `ADD` and `COPY` instructions
+do not copy them to the image.
-Finally, you may want to specify which files to include in the context, rather than which to exclude. To achieve
-this, specify * as the first pattern, followed by one or more ! exception patterns.
+Finally, you may want to specify which files to include in the context, rather
+than which to exclude. To achieve this, specify `*` as the first pattern,
+followed by one or more `!` exception patterns.
## SEE ALSO
buildah-build(1), podman-build(1), docker-build(1)
diff --git a/docs/containers.conf.5.md b/docs/containers.conf.5.md
index a7f2337..0eee44f 100644
--- a/docs/containers.conf.5.md
+++ b/docs/containers.conf.5.md
@@ -1,21 +1,26 @@
% containers.conf 5 Container engine configuration file
# NAME
-containers.conf - The container engine configuration file specifies default
-configuration options and command-line flags for container engines.
+containers.conf - The container engine configuration file specifies default configuration options and command-line flags for container engines.
# DESCRIPTION
-Container engines like Podman & Buildah read containers.conf file, if it exists
-and modify the defaults for running containers on the host. containers.conf uses
-a TOML format that can be easily modified and versioned.
+Container engines like Podman & Buildah read` containers.conf` file, if it
+exists and modify the defaults for running containers on the host. The file
+`containers.conf` uses a TOML format that can be easily modified and versioned.
Container engines read the __/usr/share/containers/containers.conf__,
-__/etc/containers/containers.conf__, and __/etc/containers/containers.conf.d/\*.conf__
-for global configuration that affects all users.
-For global configuration that only affects rootless users use __/etc/containers/containers.rootless.conf__,
-__/etc/containers/containers.rootless.d/\*.conf__ and __/etc/containers/containers.rootless.d/\$UID/\*.conf__. The UID is the user's uid which podman runs under so it can be used to specify a certain config for only a single user without having to put the config into the user's home directory.
-For user specific configuration it reads __\$XDG_CONFIG_HOME/containers/containers.conf__ and
-__\$XDG_CONFIG_HOME/containers/containers.conf.d/\*.conf__ files. When `$XDG_CONFIG_HOME` is not set it falls back to using `$HOME/.config` instead.
+__/etc/containers/containers.conf__, and
+__/etc/containers/containers.conf.d/\*.conf__ for global configuration that
+affects all users. For global configuration that only affects rootless users
+use __/etc/containers/containers.rootless.conf__,
+__/etc/containers/containers.rootless.d/\*.conf__ and
+__/etc/containers/containers.rootless.d/\$UID/\*.conf__. The UID is the user's
+uid which podman runs under so it can be used to specify a certain config for
+only a single user without having to put the config into the user's home
+directory. For user specific configuration it reads
+__\$XDG_CONFIG_HOME/containers/containers.conf__ and
+__\$XDG_CONFIG_HOME/containers/containers.conf.d/\*.conf__ files. When
+`$XDG_CONFIG_HOME` is not set it falls back to using `$HOME/.config` instead.
Fields specified in containers conf override the default options, as well as
options in previously read containers.conf files.
@@ -199,7 +204,7 @@ the container.
**dns_servers**=[]
A list of dns servers to override the DNS configuration passed to the
-container. The special value “none” can be specified to disable creation of
+container. The special value "none" can be specified to disable creation of
/etc/resolv.conf in the container.
**env**=["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"]
@@ -263,16 +268,17 @@ the `--init` for podman-create and podman-run is set.
**interface_name**=""
Default way to set interface names inside containers. Defaults to legacy pattern
-of ethX, where X is an integer, when left undefined.
+of `ethX`, where `X` is an integer, when left undefined.
+
Options are:
- `device` Uses the network_interface name from the network config as interface name. Falls back to the ethX pattern if the network_interface is not set.
+ `device`: Uses the network_interface name from the network config as interface name. Falls back to the ethX pattern if the network_interface is not set.
**ipcns**="shareable"
Default way to create a IPC namespace for the container.
Options are:
`host` Share host IPC Namespace with the container.
- `none` Create shareable IPC Namespace for the container without a private /dev/shm.
+ `none` Create shareable IPC Namespace for the container without a private `/dev/shm`.
`private` Create private IPC Namespace for the container, other containers are not allowed to share it.
`shareable` Create shareable IPC Namespace for the container.
@@ -290,11 +296,14 @@ Indicates whether the container engine uses MAC(SELinux) container separation vi
label_users indicates whether to enforce confined users in containers on
SELinux systems. This option causes containers to maintain the current user
and role field of the calling process. By default SELinux containers run with
-the user system_u, and the role system_r.
+the user `system_u`, and the role `system_r`.
**log_driver**=""
-Logging driver for the container. Currently available options are k8s-file, journald, none and passthrough, with json-file aliased to k8s-file for scripting compatibility. The journald driver is used by default if the systemd journal is readable and writable. Otherwise, the k8s-file driver is used.
+Logging driver for the container. Currently available options are k8s-file,
+journald, none and passthrough, with json-file aliased to k8s-file for
+scripting compatibility. The journald driver is used by default if the systemd
+journal is readable and writable. Otherwise, the k8s-file driver is used.
**log_path**=""
@@ -313,7 +322,9 @@ limit is never exceeded.
**log_tag**=""
-Default format tag for container log messages. This is useful for creating a specific tag for container log messages. Container log messages default to using the truncated container ID as a tag.
+Default format tag for container log messages. This is useful for creating a
+specific tag for container log messages. Container log messages default to
+using the truncated container ID as a tag.
**mounts**=[]
@@ -325,8 +336,11 @@ Example: [ "type=bind,source=/var/lib/foobar,destination=/var/lib/foobar,ro", ]
**netns**=""
Default way to create a NET namespace for the container.
-The option is mapped to the **--network** argument for the podman commands, it accepts the same values as that option.
-For example it can be set to `bridge`, `host`, `none`, `pasta` and more, see the [podman-create(1)](https://docs.podman.io/en/latest/markdown/podman-create.1.html#network-mode-net)
+The option is mapped to the **--network** argument for the podman commands, it
+accepts the same values as that option.
+For example it can be set to `bridge`, `host`, `none`, `pasta` and more, see
+the
+[podman-create(1)](https://docs.podman.io/en/latest/markdown/podman-create.1.html#network-mode-net)
manual for all available options.
**no_hosts**=false
@@ -423,10 +437,12 @@ plugins.
**network_backend**=""
-Network backend determines what network driver will be used to set up and tear down container networks.
+Network backend determines what network driver will be used to set up and tear
+down container networks.
Valid values are "cni" and "netavark".
-The default value is empty which means that it will automatically choose CNI or netavark. If there are
-already containers/images or CNI networks preset it will choose CNI.
+The default value is empty which means that it will automatically choose CNI or
+netavark. If there are already containers/images or CNI networks preset it will
+choose CNI.
Before changing this value all containers must be stopped otherwise it is likely that
iptables rules and network interfaces might leak on the host. A reboot will fix this.
@@ -462,9 +478,11 @@ netavark_plugin_dirs = [
**default_network**="podman"
-The name of the default network as seen in `podman network ls`. This option only effects the network assignment when
-the bridge network mode is selected, i.e. `--network bridge`. It is the default for rootful containers but not as
-rootless. To change the default network mode use the **netns** option under the `[containers]` table.
+The name of the default network as seen in `podman network ls`. This option
+only effects the network assignment when the bridge network mode is selected,
+i.e. `--network bridge`. It is the default for rootful containers but not as
+rootless. To change the default network mode use the **netns** option under the
+`[containers]` table.
Note: This should not be changed while you have any containers using this network.
@@ -472,7 +490,8 @@ Note: This should not be changed while you have any containers using this networ
The subnet to use for the default network (named above in **default_network**).
-Note: This should not be changed if any containers are currently running on the default network.
+Note: This should not be changed if any containers are currently running on the
+default network.
**default_subnet_pools**=[]
@@ -503,15 +522,15 @@ Configure which rootless network program to use by default. Valid options are
Path to the directory where network configuration files are located.
For the CNI backend the default is __/etc/cni/net.d__ as root
and __$HOME/.config/cni/net.d__ as rootless.
-For the netavark backend "/etc/containers/networks" is used as root
-and "$graphroot/networks" as rootless.
+For the netavark backend `/etc/containers/networks` is used as root
+and `$graphroot/networks` as rootless.
**firewall_driver**=""
-The firewall driver to be used by netavark.
-The default is empty which means netavark will pick one accordingly. Current supported
-drivers are "iptables", "nftables", "none" (no firewall rules will be created) and "firewalld" (firewalld is
-experimental at the moment and not recommend outside of testing).
+The firewall driver to be used by netavark. The default is empty which means
+netavark will pick one accordingly. Current supported drivers are "iptables",
+"nftables", "none" (no firewall rules will be created) and "firewalld"
+(firewalld is experimental at the moment and not recommend outside of testing).
**dns_bind_port**=53
@@ -526,25 +545,29 @@ A list of default pasta options that should be used running pasta.
It accepts the pasta cli options, see pasta(1) for the full list of options.
## ENGINE TABLE
-The `engine` table contains configuration options used to set up container engines such as Podman and Buildah.
+The `engine` table contains configuration options used to set up container
+engines such as Podman and Buildah.
**active_service**=""
-Name of destination for accessing the Podman service. See SERVICE DESTINATION TABLE below.
+Name of destination for accessing the Podman service.
+See SERVICE DESTINATION TABLE below.
**add_compression**=[]
-List of compression algorithms. If set makes sure that requested compression variant
-for each platform is added to the manifest list keeping original instance intact in
-the same manifest list on every `manifest push`. Supported values are (`gzip`, `zstd` and `zstd:chunked`).
-`zstd:chunked` is incompatible with encrypting images, and will be treated as `zstd` with a warning
-in that case.
+List of compression algorithms. If set makes sure that requested compression
+variant for each platform is added to the manifest list keeping original
+instance intact in the same manifest list on every `manifest push`. Supported
+values are (`gzip`, `zstd` and `zstd:chunked`). `zstd:chunked` is incompatible
+with encrypting images, and will be treated as `zstd` with a warning in that
+case.
-Note: This is different from `compression_format` which allows users to select a default
-compression format for `push` and `manifest push`, while `add_compression` is limited to
-`manifest push` and allows users to append new instances to manifest list with specified compression
-algorithms in `add_compression` for each platform.
+Note: This is different from `compression_format` which allows users to select
+a default compression format for `push` and `manifest push`, while
+`add_compression` is limited to `manifest push` and allows users to append new
+instances to manifest list with specified compression algorithms in
+`add_compression` for each platform.
**cgroup_manager**="systemd"
@@ -754,7 +777,9 @@ specify an image to pull.
**kube_generate_type**="pod"
-Default Kubernetes kind/specification of the kubernetes yaml generated with the `podman kube generate` command. The possible options are `pod` and `deployment`.
+Default Kubernetes kind/specification of the kubernetes yaml generated with the
+`podman kube generate` command. The possible options are `pod` and
+`deployment`.
**lock_type**="shm"
@@ -766,7 +791,10 @@ change the lock type.
**multi_image_archive**=false
-Allows for creating archives (e.g., tarballs) with more than one image. Some container engines, such as Podman, interpret additional arguments as tags for one image and hence do not store more than one image. The default behavior can be altered with this option.
+Allows for creating archives (e.g., tarballs) with more than one image. Some
+container engines, such as Podman, interpret additional arguments as tags for
+one image and hence do not store more than one image. The default behavior can
+be altered with this option.
**namespace**=""
@@ -823,14 +851,20 @@ Set the exit policy of the pod when the last container exits. Supported policie
Pull image before running or creating a container. The default is **missing**.
-- **missing**: attempt to pull the latest image from the registries listed in registries.conf if a local image does not exist. Raise an error if the image is not in any listed registry and is not present locally.
-- **always**: pull the image from the first registry it is found in as listed in registries.conf. Raise an error if not found in the registries, even if the image is present locally.
-- **never**: do not pull the image from the registry, use only the local version. Raise an error if the image is not present locally.
+- **missing**: attempt to pull the latest image from the registries listed in
+ `registries.conf` if a local image does not exist. Raise an error if the image
+ is not in any listed registry and is not present locally.
+- **always**: pull the image from the first registry it is found in as listed
+ in `registries.conf`. Raise an error if not found in the registries, even if
+ the image is present locally.
+- **never**: do not pull the image from the registry, use only the local
+ version. Raise an error if the image is not present locally.
**remote** = false
-Indicates whether the application should be running in remote mode. This flag modifies the
---remote option on container engines. Setting the flag to true will default `podman --remote=true` for access to the remote Podman service.
+Indicates whether the application should be running in remote mode. This flag
+modifies the `--remote` option on container engines. Setting the flag to true
+will default `podman --remote=true` for access to the remote Podman service.
**retry** = 3
@@ -838,7 +872,9 @@ Number of times to retry pulling/pushing images in case of failure.
**retry_delay** = ""
-Delay between retries in case pulling/pushing image fails. If set, container engines will retry at the set interval, otherwise they delay 2 seconds and then exponentially back off.
+Delay between retries in case pulling/pushing image fails. If set, container
+engines will retry at the set interval, otherwise they delay 2 seconds and then
+exponentially back off.
**runtime**=""
@@ -909,7 +945,8 @@ Specifies the compression format to use when pushing an image. Supported values
are: `gzip`, `zstd` and `zstd:chunked`. This field is ignored when pushing
images to the docker-daemon and docker-archive formats. It is also ignored
when the manifest format is set to v2s2.
-`zstd:chunked` is incompatible with encrypting images, and will be treated as `zstd` with a warning
+`zstd:chunked` is incompatible with encrypting images, and will be treated as
+`zstd` with a warning
in that case.
**compression_level**="5"
|