First Upload
This commit is contained in:
22
docker-compose.yaml
Normal file
22
docker-compose.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
version: "3.5"
|
||||
services:
|
||||
vue-influxdb:
|
||||
image: influxdb
|
||||
container_name: vue-influxdb
|
||||
ports:
|
||||
- 8086:8086
|
||||
volumes:
|
||||
- influxdb-storage:/var/lib/influxdb2
|
||||
environment:
|
||||
- INFLUXD_SESSION_LENGTH=432000
|
||||
restart: always
|
||||
vuegraf:
|
||||
image: jertel/vuegraf
|
||||
container_name: vuegraf
|
||||
depends_on:
|
||||
- vue-influxdb
|
||||
volumes:
|
||||
- ./:/opt/vuegraf/conf #This assumes you have created a folder called vuegraf and placed the vuegraf.json file inside of it.
|
||||
restart: always
|
||||
volumes:
|
||||
influxdb-storage:
|
Reference in New Issue
Block a user