31 lines
946 B
SYSTEMD
31 lines
946 B
SYSTEMD
[Unit]
|
|
Description=Podman container-hass-postgres.service
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
RequiresMountsFor=%t/containers
|
|
BindsTo=pod-home-assistant.service
|
|
After=pod-home-assistant.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 \
|
|
--pod-id-file %t/pod-home-assistant.pod-id \
|
|
--sdnotify=conmon --replace -d \
|
|
--name=hass-postgres \
|
|
-e POSTGRES_USER=home-assistant \
|
|
-e POSTGRES_PASSWORD=home-assistant \
|
|
-e POSTGRES_DB=home-assistant \
|
|
--net=host \
|
|
-v hass-postgres:/var/lib/postgresql/data \
|
|
--label "io.containers.autoupdate=registry" \
|
|
docker.io/postgres:14
|
|
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 |