Skip to content

Instantly share code, notes, and snippets.

@kizzx2
Last active April 18, 2024 10:47
Show Gist options
  • Star 51 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save kizzx2/782b500a81ce46b889903b1f80353f21 to your computer and use it in GitHub Desktop.
Save kizzx2/782b500a81ce46b889903b1f80353f21 to your computer and use it in GitHub Desktop.
Restart a docker container periodically with docker-compose
version: '3'
services:
app:
image: nginx:alpine
ports: ["80:80"]
restart: unless-stopped
restarter:
image: docker:cli
volumes: ["/var/run/docker.sock:/var/run/docker.sock"]
command: ["/bin/sh", "-c", "while true; do sleep 86400; docker restart app_app_1; done"]
restart: unless-stopped
@marvin-hris
Copy link

@kizzx2 Thats Work as simple as that

thanks

docker restart

@counterbundle32
Copy link

Thanks. This is exactly what I was looking for.

@rootkit7628
Copy link

Thanks. Best solution I've found.

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