Browse Source

service file

59-mattermost
Steven Foerster 5 years ago
parent
commit
a19b59a00e
  1. 21
      scripts/services/Mistborn-mattermost.service

21
scripts/services/Mistborn-mattermost.service

@ -0,0 +1,21 @@
[Unit]
Description=Mistborn Mattermost Service
Requires=Mistborn-base.service
After=Mistborn-base.service
[Service]
Restart=always
User=root
Group=docker
PermissionsStartOnly=true
# Shutdown container (if running) when unit is stopped
ExecStartPre=/usr/local/bin/docker-compose -f /opt/mistborn/extra/mattermost.yml down
# Start container when unit is started
ExecStart=/usr/local/bin/docker-compose -f /opt/mistborn/extra/mattermost.yml up --build
# Stop container when unit is stopped
ExecStop=/usr/local/bin/docker-compose -f /opt/mistborn/extra/mattermost.yml down
# Post stop
[Install]
WantedBy=multi-user.target
Loading…
Cancel
Save