Files
drb-edge-node/docker-compose.yml
Logan Cusano 642e8c8da4 add location
2025-12-28 17:39:15 -05:00

28 lines
595 B
YAML

services:
edge-supervisor:
build:
context: .
dockerfile: Dockerfile
container_name: radio-edge-node
restart: unless-stopped
ports:
- 8001:8001
devices:
- "/dev/bus/usb:/dev/bus/usb"
volumes:
- ./config:/app/config
- ./op25_logs:/tmp/op25
env_file:
- .env
environment:
- NODE_ID=${NODE_ID}
- NODE_LAT=${NODE_LAT}
- NODE_LONG=${NODE_LONG}
- MQTT_BROKER=${MQTT_BROKER}
- ICECAST_SERVER=${ICECAST_SERVER}
networks:
- radio-shared-net
networks:
radio-shared-net:
external: true