- update multicast_server - modify config models - add dockerfile and docker compose Reviewed-on: https://gitea.pstruebi.xyz/auracaster/bumble-auracast/pulls/4
23 lines
658 B
YAML
23 lines
658 B
YAML
services:
|
|
multicaster:
|
|
privileged: true # Grants full access to all devices (needed for serial access)
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
build:
|
|
dockerfile: Dockerfile
|
|
ssh:
|
|
- default=~/.ssh/id_ed25519 #lappi
|
|
#- default=~/.ssh/id_rsa #raspi
|
|
volumes:
|
|
- "/dev/serial:/dev/serial"
|
|
#devices:
|
|
# - /dev/serial/by-id/usb-ZEPHYR_Zephyr_HCI_UART_sample_81BD14B8D71B5662-if00
|
|
environment:
|
|
LOG_LEVEL: INFO
|
|
|
|
command: python ./auracast/multicast_server.py
|
|
#command: python ./auracast/multicast.py # continously streaming test app
|
|
|
|
|
|
# use docker compose up --build |