coreos-home-server/config/service/redis/systemd/redis.service

14 lines
363 B
SYSTEMD
Raw Normal View History

[Unit]
Description=Redis Key-Value Store
Wants=container-build@%N.service
After=container-build@%N.service
[Service]
Restart=always
ExecStart=/bin/podman run --replace --pull never --name %N --net internal --volume %N:/data:z localhost/%N:latest
ExecStop=/bin/podman stop --time 10 %N
ExecStopPost=/bin/podman rm --force %N
[Install]
WantedBy=multi-user.target