homelab/roles/docker/templates/docker-compose.service.j2

15 lines
298 B
Plaintext
Raw Normal View History

2022-05-27 02:26:35 +00:00
[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