22 lines
524 B
YAML
22 lines
524 B
YAML
version: '2.4'
|
|
|
|
services:
|
|
|
|
# latency-monitor
|
|
latency-monitor:
|
|
container_name: latency-monitor
|
|
hostname: latency-monitor
|
|
image: planetespresso/pylatemon
|
|
restart: always
|
|
volumes:
|
|
# - ./latency-monitor/config.ini:/app/config.ini:ro # UNCOMMENT IF NEEDED
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
environment:
|
|
- INFLUX_URL
|
|
- INFLUX_TOKEN
|
|
- INFLUX_BUCKET
|
|
- INFLUX_ORG
|
|
- TARGET_HOST
|
|
- TARGET_TIMER
|
|
- TARGET_LOCATION |