Files
legacy-docker-compose/Grafana/docker-compose.yml
2023-09-26 18:14:36 -06:00

37 lines
988 B
YAML

services:
grafana:
container_name: grafana
env_file:
- .env
image: grafana/grafana-oss:latest
labels:
traefik.docker.network: traefik
traefik.enable: true
traefik.http.routers.grafana.entrypoints: websecure
traefik.http.routers.grafana.rule: Host(`grafana.alexlebens.net`)
traefik.http.routers.grafana.service: grafana
traefik.http.services.grafana.loadbalancer.server.port: 3000
logging:
driver: json-file
options:
max-size: 50m
max-file: "3"
networks:
traefik: null
restart: always
volumes:
- lib:/var/lib/grafana
networks:
traefik:
name: traefik
external: true
volumes:
lib:
driver: local
driver_opts:
type: none
o: bind
device: /var/lib/docker/volumes/partition/grafana_lib