diff --git a/docker/prunemate/docker-compose.yaml b/docker/prunemate/docker-compose.yaml new file mode 100644 index 0000000..eedcf5a --- /dev/null +++ b/docker/prunemate/docker-compose.yaml @@ -0,0 +1,23 @@ +services: + prunemate: + image: anoniemerd/prunemate:latest + container_name: prunemate + healthcheck: + test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/8080' || exit 1 + interval: 10s + timeout: 5s + retries: 3 + start_period: 90s + ports: + - 7878:8080 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - logs:/var/log:rw + - config:/config:rw + environment: + PRUNEMATE_TZ: Europe/Berlin + PRUNEMATE_TIME_24H: true # use false instead of true for 12-Hour format (AM/PM) + restart: on-failure:5 +volumes: + logs: + config: \ No newline at end of file