You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
537 B

version: "2"
services:
grafana:
image: grafana/grafana
container_name: grafana
restart: always
environment:
- "GF_SERVER_ROOT_URL=https://monitor.ericklein.de"
networks:
- default
- ek_host
volumes:
- /srv/data/grafana:/var/lib/grafana
influxdb:
image: influxdb
container_name: influxdb
restart: always
networks:
- default
ports:
- 127.0.0.1:8086:8086
volumes:
- /srv/data/influxdb:/var/lib/influxdb
networks:
ek_host:
external: true