38 lines
1.8 KiB
Desktop File
38 lines
1.8 KiB
Desktop File
[Unit]
|
|
Description=Podman container-lrproxy-nginx.service
|
|
Documentation=man:podman-generate-systemd(1)
|
|
Wants=network.target
|
|
After=network-online.target
|
|
BindsTo=pod-lrproxy.service
|
|
After=pod-lrproxy.service
|
|
OnFailure=status-mail@%n.service
|
|
|
|
[Service]
|
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
|
Restart=on-failure
|
|
TimeoutStopSec=70
|
|
ExecStartPre=/bin/rm -f %t/container-lrproxy-nginx.pid %t/container-lrproxy-nginx.ctr-id
|
|
ExecStart=/usr/bin/podman run \
|
|
--conmon-pidfile %t/container-lrproxy-nginx.pid \
|
|
--cidfile %t/container-lrproxy-nginx.ctr-id \
|
|
--cgroups=no-conmon \
|
|
--pod-id-file %t/pod-lrproxy.pod-id \
|
|
--replace \
|
|
--label "io.containers.autoupdate=image" \
|
|
-dt \
|
|
{{ services_rproxy_nginx_add_hosts }} \
|
|
-v {{ services_root_directory }}/{{ services_resolv_host }}-resolv.conf:/etc/resolv.conf:ro \
|
|
-v ./.config/pod-lrproxy/nginx.conf:/etc/nginx/nginx.conf:ro \
|
|
-v ./.config/pod-lrproxy/nginx-conf.d:/etc/nginx/conf.d:ro \
|
|
-v ./.config/pod-lrproxy/dhparam.pem:/etc/ssl/certs/dhparam.pem:ro \
|
|
-v {{ services_data_directory }}/pod-lrproxy/etc-letsencrypt/_data:/etc/letsencrypt:ro \
|
|
--name=pod-lrproxy-nginx \
|
|
docker.io/library/nginx:{{ services_deploy_versions.lrproxy.nginx }}
|
|
ExecStop=/usr/bin/podman stop --ignore --cidfile %t/container-lrproxy-nginx.ctr-id -t 10
|
|
ExecStopPost=/usr/bin/podman rm --ignore -f --cidfile %t/container-lrproxy-nginx.ctr-id
|
|
PIDFile=%t/container-lrproxy-nginx.pid
|
|
Type=forking
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target default.target
|