diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | davical.service | 21 |
2 files changed, 23 insertions, 0 deletions
@@ -2,6 +2,8 @@ Initial README +## systemd +There is a systemd-service file if you want to use it. I find it helpful. ## Upgrading When you need to upgrade the database, remember to run the diff --git a/davical.service b/davical.service new file mode 100644 index 0000000..b78ccaf --- /dev/null +++ b/davical.service @@ -0,0 +1,21 @@ +[Unit] +Description=DAViCal Docker container +Requires=network.target docker.service watchtower.service +After=watchtower.service + +[Service] +# Don't restart - it will conflict with watchtower. +Restart=no + +# Start with removing old images +ExecStartPre=-/usr/bin/docker rm -f davical +ExecStart=/usr/bin/docker run --rm \ + --name davical \ + --env-file /etc/systemd/system/davical.service.d/env \ + --publish 2203:80 \ + dennis/davical:v0.7 + +ExecStop=/usr/bin/docker stop -t 2 davical + +[Install] +WantedBy=default.target |