15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
|
[Unit]
|
||
|
Description=%i docker-compose service
|
||
|
PartOf=docker.service
|
||
|
After=docker.service
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=true
|
||
|
WorkingDirectory={{ docker_root }}/%i
|
||
|
ExecStart={{ docker_compose }} up -d --remove-orphans
|
||
|
ExecStop={{ docker_compose }} down
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|