Last active
May 7, 2020 01:27
-
-
Save reiallenramos/b989da897e04fabb270e3f0aafe423b0 to your computer and use it in GitHub Desktop.
system unit file for nuxtjs-otp-boilerplate Lightsail instance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/docker-compose-app.service | |
# based on https://github.com/mikegcoleman/todo/blob/master/docker-compose-app.service | |
[Unit] | |
Description=Docker Compose Application Service | |
Requires=docker.service | |
After=docker.service | |
[Service] | |
Type=oneshot | |
RemainAfterExit=yes | |
# match the below to wherever you copied your docker-compose.yml | |
WorkingDirectory=/srv/docker | |
ExecStart=/usr/local/bin/docker-compose up -d | |
ExecStop=/usr/local/bin/docker-compose down | |
TimeoutStartSec=0 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment