This commit is contained in:
Logan Cusano
2025-12-28 02:37:50 -05:00
commit 26e90f4584
14 changed files with 893 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
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}
- MQTT_BROKER=${MQTT_BROKER}
- ICECAST_SERVER=${ICECAST_SERVER}
networks:
- radio-shared-net
networks:
radio-shared-net:
external: true