-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
22 lines (22 loc) · 881 Bytes
/
docker-compose.yml
File metadata and controls
22 lines (22 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
adsbee-metrics-exporter:
image: bigjuevos/adsbee-metrics-exporter:latest
# To build locally instead of pulling from Docker Hub, uncomment below:
# build:
# context: .
# dockerfile: Dockerfile
container_name: adsbee-metrics-exporter
restart: unless-stopped
environment:
# Change this to point at your ADSBee WebSocket endpoint
- WS_URL=${WS_URL:-ws://your-adsbee-host:80/metrics}
# Port the exporter listens on inside the container
- LOG_LEVEL=${LOG_LEVEL:-INFO}
# Optional tuning
- RECONNECT_MIN_SECONDS=${RECONNECT_MIN_SECONDS:-1}
- RECONNECT_MAX_SECONDS=${RECONNECT_MAX_SECONDS:-30}
- CONNECT_TIMEOUT_SECONDS=${CONNECT_TIMEOUT_SECONDS:-10}
- RECEIVE_TIMEOUT_SECONDS=${RECEIVE_TIMEOUT_SECONDS:-30}
ports:
# HostPort:ContainerPort
- "${EXPORTER_PORT:-9100}:9100"