diff options
author | Georg | 2021-07-21 13:04:22 +0200 |
---|---|---|
committer | Georg | 2021-07-21 13:04:22 +0200 |
commit | eb04685ad152984c5903c94d5f33f5296cf6e277 (patch) | |
tree | bfd7c1f6d40dc9195aad74104c4600c0fbaaa9aa /systemd/mailcow.service | |
parent | 3d1dead13b5f3d7674b98a3f8684686d8fbc681e (diff) | |
download | system-eb04685ad152984c5903c94d5f33f5296cf6e277.tar.gz system-eb04685ad152984c5903c94d5f33f5296cf6e277.tar.bz2 system-eb04685ad152984c5903c94d5f33f5296cf6e277.zip |
Initial Systemd Service Run: 3/3
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'systemd/mailcow.service')
-rw-r--r-- | systemd/mailcow.service | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/systemd/mailcow.service b/systemd/mailcow.service new file mode 100644 index 0000000..af2d974 --- /dev/null +++ b/systemd/mailcow.service @@ -0,0 +1,14 @@ +[Unit] +Description=Mailcow +Requires=docker.service +After=docker.service + +[Service] +Type=oneshot +RemainAfterExit=true +WorkingDirectory=/opt/mailcow-dockerized +ExecStart=/usr/local/bin/docker-compose up -d +ExecStop=/usr/local/bin/docker-compose down + +[Install] +WantedBy=multi-user.target |