23 lines
595 B
YAML
23 lines
595 B
YAML
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: |