29 lines
904 B
SYSTEMD
29 lines
904 B
SYSTEMD
|
[Unit]
|
||
|
Description=Podman container-postgres.service
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
RequiresMountsFor=%t/containers
|
||
|
BindsTo=pod-nextcloud.service
|
||
|
After=pod-nextcloud.service
|
||
|
|
||
|
[Service]
|
||
|
Environment=PODMAN_SYSTEMD_UNIT=%n
|
||
|
Restart=on-failure
|
||
|
TimeoutStopSec=70
|
||
|
ExecStartPre=/bin/rm -f %t/%n.ctr-id
|
||
|
ExecStart=/usr/bin/podman run --cidfile=%t/%n.ctr-id --cgroups=no-conmon --rm --sdnotify=conmon --replace -d \
|
||
|
--name=nextcloud-postgres \
|
||
|
--pod-id-file %t/pod-nextcloud.pod-id \
|
||
|
-v nextcloud-postgres:/var/lib/postgresql/data \
|
||
|
-e POSTGRES_USER=nextcloud \
|
||
|
-e POSTGRES_PASSWORD=nextcloud \
|
||
|
-e POSTGRES_DB=nextcloud \
|
||
|
--label "io.containers.autoupdate=registry" \
|
||
|
docker.io/postgres:13
|
||
|
ExecStop=/usr/bin/podman stop --ignore --cidfile=%t/%n.ctr-id
|
||
|
ExecStopPost=/usr/bin/podman rm -f --ignore --cidfile=%t/%n.ctr-id
|
||
|
Type=notify
|
||
|
NotifyAccess=all
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|