infrastructure/ansible/roles/grafana/files/docker-compose.yml
Jake Howard 9ffdd4d711
Move grafana to ZFS
Don't need to create the directory anymore really
2020-08-22 12:07:44 +01:00

22 lines
464 B
YAML

version: "2.3"
services:
grafana:
image: grafana/grafana:latest
environment:
- TZ=Europe/London
volumes:
- /mnt/tank/app-data/grafana:/var/lib/grafana
restart: unless-stopped
networks:
- default
- grafana
labels:
- traefik.enable=true
- traefik.http.routers.grafana.rule=Host(`grafana.jakehoward.tech`)
- traefik.http.routers.grafana.tls.certresolver=le
networks:
grafana:
external: true