mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00

This commit adds new Retry= and RetryDelay= options to quadlet.go which result in --retry and --retry-delay usage in podman run, image and build commands. This allows configuring the retry logic in the systemd files. Fixes: #25109 Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
9 lines
166 B
Plaintext
9 lines
166 B
Plaintext
## assert-podman-args "--retry" "5"
|
|
## assert-podman-args "--retry-delay" "10s"
|
|
|
|
[Build]
|
|
ImageTag=localhost/imagename
|
|
SetWorkingDirectory=unit
|
|
Retry=5
|
|
RetryDelay=10s
|