21 lines
520 B
Desktop File
21 lines
520 B
Desktop File
[Unit]
|
|
Description=Podman image@%i
|
|
Wants=network.target
|
|
After=network-online.target
|
|
StartLimitIntervalSec=1h
|
|
StartLimitBurst=3
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
|
LogExtraFields=IMAGE=%i
|
|
ExecCondition=/usr/bin/bash -c '[[ $(podman images --format json localhost/%i | jq .\\[0\\]) == "null" ]]'
|
|
ExecStart=/usr/bin/podman build --tag localhost/%i $EXTRAOPTS /docker/containers/%i
|
|
Restart=no
|
|
RemainAfterExit=yes
|
|
TimeoutStartSec=1h
|
|
SendSIGKILL=no
|
|
LogRateLimitIntervalSec=15min
|
|
LogRateLimitBurst=1500
|
|
|