Skip to content

Instantly share code, notes, and snippets.

@xanarin
Created June 29, 2024 21:03
Show Gist options
  • Save xanarin/8acaedec209ca204fdf24d576c166ec5 to your computer and use it in GitHub Desktop.
Save xanarin/8acaedec209ca204fdf24d576c166ec5 to your computer and use it in GitHub Desktop.
Reliable systemd unit for docker-compose
[Unit]
Description=Docker service testing facility
After=network.target docker.service
[Service]
Restart=always
WorkingDirectory=/srv/tester
SyslogIdentifier=%i
ExecStart=/usr/bin/docker-compose up --no-color
ExecStopPost=/usr/bin/docker-compose rm -f
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment