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
470 B
23 lines
470 B
version: '2'
|
|
services:
|
|
influxdb:
|
|
image: influxdb
|
|
ports:
|
|
- 8083:8083
|
|
- 8086:8086
|
|
volumes:
|
|
- ./data:/var/lib/influxdb
|
|
chronograf:
|
|
image: chronograf
|
|
ports:
|
|
- 8888:8888
|
|
- 10000:10000
|
|
iot-ddg:
|
|
image: node:6
|
|
working_dir: /app
|
|
volumes:
|
|
- '.:/app'
|
|
command: bash -c "npm update npm -g && npm install && tail -f /dev/null"
|
|
environment:
|
|
- INFLUX_HOST=influxdb
|
|
- INFLUX_DATABASE=iot-dummy
|