Template
1
0
This commit is contained in:
Azer Abdullaev 2021-02-03 19:02:42 +01:00
parent 62d3942832
commit d953c458a5
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ deploy:
docker service rm dummy || true
install -D -m 644 config/systemd/dummy.service /etc/systemd/system
systemctl daemon-reload
systemctl stop dummy.service || true && podman rm -f dummy
systemctl stop dummy.service
podman run --name dummy -d dummy:latest
systemctl enable dummy.service

View File

@ -5,6 +5,8 @@ Description=A dummy service
Restart=always
ExecStart=/usr/bin/podman start -a dummy
ExecStop=/usr/bin/podman stop -t 2 dummy
ExecStop=/usr/bin/podman rm -f dummy
ExecStopPost=/bin/sleep 2
[Install]
WantedBy=default.target