infrastructure/ansible/roles/docker/files/statping/docker-compose.yml
Jake Howard 5938f7fca6
Remove statping from internal DNS
This *hammers* pihole and massively inflates the metrics. Remove for now until there's a sane way to fix it
2020-03-19 19:16:04 +00:00

24 lines
604 B
YAML

version: '2.3'
services:
statping:
image: hunterlong/statping:v0.80.70
container_name: statping
restart: unless-stopped
volumes:
- ./statping:/app
labels:
- "traefik.enable=true"
- "traefik.http.routers.statping.rule=Host(`stats.theorangeone.net`)"
- "traefik.http.routers.statping.tls=true"
- "traefik.http.routers.statping.tls.certresolver=le"
db:
image: postgres:12-alpine
restart: unless-stopped
volumes:
- ./postgres:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=statping
- POSTGRES_USER=statping