Ident samples
This commit is contained in:
parent
6184c0bf3d
commit
02db9cc19c
47 changed files with 2658 additions and 213 deletions
31
tutorial/docker-orchestration/misc/docker-compose-std.yml
Normal file
31
tutorial/docker-orchestration/misc/docker-compose-std.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
version: '2'
|
||||
|
||||
services:
|
||||
influxdb:
|
||||
build: influxdb
|
||||
ports:
|
||||
- "8083:8083"
|
||||
- "8086:8086"
|
||||
volumes:
|
||||
- influx-data:/var/lib/influxdb
|
||||
networks:
|
||||
- influx
|
||||
|
||||
chronograf:
|
||||
build: chronograf
|
||||
ports:
|
||||
- "10000:10000"
|
||||
volumes:
|
||||
- chronograf-data:/var/lib/chronograf
|
||||
networks:
|
||||
- influx
|
||||
|
||||
volumes:
|
||||
influx-data:
|
||||
driver: local
|
||||
chronograf-data:
|
||||
driver: local
|
||||
|
||||
networks:
|
||||
influx:
|
||||
driver: bridge
|
Loading…
Add table
Add a link
Reference in a new issue