Smaller updates and extions to docker compose files
This commit is contained in:
32
grafana-tick/docker-compose.yml
Normal file
32
grafana-tick/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
|
||||
version: '2'
|
||||
services:
|
||||
grafana:
|
||||
image: grafana/grafana
|
||||
container_name: grafana
|
||||
restart: always
|
||||
ports:
|
||||
- 4000:3000
|
||||
networks:
|
||||
- monitoring
|
||||
volumes:
|
||||
- grafana-volume:/var/lib/grafana
|
||||
|
||||
influxdb:
|
||||
image: influxdb
|
||||
container_name: influxdb
|
||||
restart: always
|
||||
ports:
|
||||
- 8086:8086
|
||||
networks:
|
||||
- monitoring
|
||||
volumes:
|
||||
- influxdb-volume:/var/lib/influxdb
|
||||
|
||||
networks:
|
||||
monitoring:
|
||||
|
||||
volumes:
|
||||
grafana-volume:
|
||||
influxdb-volume:
|
||||
|
||||
Reference in New Issue
Block a user