-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
101 lines (94 loc) · 2.92 KB
/
compose.yaml
File metadata and controls
101 lines (94 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
services:
icarus:
image: randyherban/icarus:latest
platform: linux/arm64/v8
env_file: ".env"
volumes:
#- ./icarus/system.json:/opt/radiohound/icarus/system.json
- /data:/data
- /opt/mep-examples:/opt/mep-examples
- /home/mep:/home/mep
- /opt/radiohound/.ssh:/opt/radiohound/.ssh
- /var/run/docker.sock:/var/run/docker.sock
- /opt/radiohound/docker:/opt/radiohound/docker
environment:
- DOCKER_COMPOSE_FILE=/opt/radiohound/docker/compose.yaml
- MEP_UID=${UID}
- MEP_GID=${GID}
network_mode: "host"
container_name: "icarus"
restart: unless-stopped
radiohound_web:
image: randyherban/radiohound_web:latest
platform: linux/arm64/v8
env_file: ".env"
network_mode: "host"
container_name: "radiohound_web"
restart: unless-stopped
radiohound_app:
image: randyherban/radiohound_app:latest
platform: linux/arm64/v8
env_file: ".env"
network_mode: "host"
container_name: "radiohound_app"
restart: unless-stopped
mqtt:
image: "eclipse-mosquitto:2.0.22"
container_name: "mqtt"
restart: unless-stopped
volumes:
- ./mosquitto:/etc/mosquitto
- ./mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf
network_mode: "host"
mongodb:
image: "mongodb/mongodb-community-server:8.2.1-ubuntu2204"
container_name: "mongodb"
restart: unless-stopped
volumes:
- mongodb:/data/db
network_mode: "host"
env_file: ".env"
recorder:
image: ghcr.io/ryanvolz/holoscan_recorder/mep:latest
container_name: recorder
environment:
- HOLOSCAN_EXECUTOR_LOG_LEVEL=WARN
- HOLOSCAN_LOG_LEVEL=INFO
- HOLOSCAN_LOG_FORMAT=DEFAULT
- NODE_ID=${NODE_ID:?error}
- PYTHONUNBUFFERED=1
- RECORDER_CONFIG_PATH=/config
- RECORDER_OUTPUT_PATH=/data/captures
- RECORDER_RAM_RINGBUFFER_PATH=/ramdisk
- RECORDER_START_CONFIG=sr1MHz
- RECORDER_TMP_RINGBUFFER_PATH=/data/tmp-ringbuffer
network_mode: host
restart: unless-stopped
runtime: nvidia
tmpfs:
- /ramdisk:mode=777,uid=${UID},gid=${GID},nodev,nosuid,noexec,size=1G
ulimits:
# increase stack limit to prevent failed allocations
stack: 67108864
user: ${UID}:${GID}
volumes:
- /data:/data
- ./recorder/configs:/config
tuner_control:
image: ghcr.io/spectrumx/mep-tuner-control:latest
container_name: tuner_control
environment:
- MEP_TUNERS_LOG_LEVEL=DEBUG
- NODE_ID=${NODE_ID:?error}
- PYTHONUNBUFFERED=1
- TUNER_CFG__VALON__PORT=/dev/valon5015
- TUNER_CFG__VALON__BAUDRATE=9600
- TUNER_CFG__VALON__TIMEOUT=1.0
- TUNER_CONTROL_SERVICE_LOG_LEVEL=INFO
network_mode: host
restart: unless-stopped
privileged: true # for device access without knowing whether tuners are present
volumes:
- /dev:/dev # volume map /dev because we want udev symlinks
volumes:
mongodb: