15 lines
306 B
Plaintext
15 lines
306 B
Plaintext
|
[Unit]
|
|||
|
Description=%i service with docker compose
|
|||
|
PartOf=docker.service
|
|||
|
After=docker.service
|
|||
|
|
|||
|
[Service]
|
|||
|
Type=oneshot
|
|||
|
RemainAfterExit=true
|
|||
|
WorkingDirectory=/opt/docker-compose/{{ service }}
|
|||
|
ExecStart=/usr/bin/docker-compose up -d
|
|||
|
ExecStop=/usr/bin/docker-compose down
|
|||
|
|
|||
|
[Install]
|
|||
|
WantedBy=multi-user.target
|