25 lines
512 B
YAML
25 lines
512 B
YAML
version: "2"
|
|
|
|
services:
|
|
import:
|
|
build: importer
|
|
image: docker.clkl.de/weather/import:0.2
|
|
influxdb:
|
|
image: influxdb:1.5-alpine
|
|
command: influxd -config /etc/influxdb/influxdb.conf
|
|
ports:
|
|
- "8086:8086"
|
|
volumes:
|
|
- "./influxdb/:/var/lib/influxdb"
|
|
environment:
|
|
- INFLUXDB_DB=mydb
|
|
#- INFLUXDB_USER=user
|
|
#- INLFUXDB_USER_PASSWORD=<secret>
|
|
grafana:
|
|
image: grafana/grafana
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
# - "./grafana_etc/:/etc/grafana/"
|
|
- "./grafana_lib/:/var/lib/grafana/"
|