Skip to content

Instantly share code, notes, and snippets.

@ilude
Forked from mosquito/README.md
Last active January 29, 2019 19:51
Show Gist options
  • Save ilude/431df3a344f421e2a1c3ef48ed5fe347 to your computer and use it in GitHub Desktop.
Save ilude/431df3a344f421e2a1c3ef48ed5fe347 to your computer and use it in GitHub Desktop.
Add doker-compose as a systemd unit

Docker compose as a systemd unit

Create file /etc/systemd/system/docker-compose@.service

[Unit]
Description=%i service with docker compose
Requires=docker.service
After=docker.service

[Service]
Restart=always

WorkingDirectory=/apps/%i

# Remove old containers, images and volumes
ExecStartPre=/usr/local/bin/docker-compose down

# Compose up
ExecStart=/usr/local/bin/docker-compose up

# Compose down, remove containers and volumes
ExecStop=/usr/local/bin/docker-compose down

[Install]
WantedBy=multi-user.target

Place your docker-compose.yml into /apps/myservice and call

systemctl start docker-compose@myservice

Docker cleanup timer with system

Create /etc/systemd/system/docker-cleanup.timer with this content:

[Unit]
Description=Docker cleanup timer

[Timer]
OnUnitInactiveSec=12h

[Install]
WantedBy=timers.target

And service file /etc/systemd/system/docker-cleanup.service:

[Unit]
Description=Docker cleanup
Requires=docker.service
After=docker.service

[Service]
Type=oneshot
WorkingDirectory=/tmp
User=root
Group=root
ExecStart=/usr/bin/docker system prune -f

[Install]
WantedBy=multi-user.target

run systemctl enable docker-cleanup.timer for enabling the timer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment