mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-12-13 22:16:17 +00:00
14 docker compose initial commit
This commit is contained in:
20
system-monitoring/docker-compose.yaml
Normal file
20
system-monitoring/docker-compose.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: system-monitoring
|
||||
services:
|
||||
# https://www.influxdata.com/
|
||||
influxdb:
|
||||
container_name: influxdb
|
||||
ports:
|
||||
- 8086:8086
|
||||
volumes:
|
||||
- ./influxdb/data:/var/lib/influxdb2
|
||||
- ./influxdb/config:/etc/influxdb2
|
||||
restart: unless-stopped
|
||||
image: influxdb:2.1.1
|
||||
# https://www.influxdata.com/time-series-platform/telegraf/
|
||||
telegraf:
|
||||
container_name: telegraf
|
||||
image: telegraf:1.25-alpine
|
||||
depends_on:
|
||||
- influxdb
|
||||
volumes:
|
||||
- ./telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:ro
|
||||
Reference in New Issue
Block a user