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.
23 lines
592 B
23 lines
592 B
version: '3.5'
|
|
services:
|
|
grafana:
|
|
image: grafana/grafana
|
|
container_name: grafana
|
|
restart: on-failure
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
# Dados persistentes.
|
|
# sudo mkdir -p /srv/docker/grafana/data; chown 472:472 /srv/docker/grafana/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- ./srv/docker/grafana/data:/var/lib/grafana
|
|
|
|
influxdb:
|
|
image: influxdb:latest
|
|
volumes:
|
|
- /Users/anaisdotis-georgiou/temp/influxdb2:/var/lib/influxdb2:rw
|
|
|
|
ports:
|
|
- "8086:8086"
|
|
|
|
restart: always
|
|
|