-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
75 lines (70 loc) · 1.47 KB
/
docker-compose.yaml
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
services:
ogn-configuration:
image: ogn-configuration
container_name: ogn-configuration
restart: no
env_file:
- .env
environment:
Demodulator_PipeName: ogn-rf:50010
APRS_Server: "aprs-proxy:14580"
volumes:
- shared_data:/shared_data
healthcheck:
test: ["CMD", "test", "-s", "/shared_data/rtlsdr-ogn.conf"]
start_period: 1s
timeout: 1s
interval: 1s
retries: 1
ogn-rf:
image: ogn-rf
container_name: ogn-rf
restart: unless-stopped
depends_on:
ogn-configuration:
condition: service_healthy
ports:
- 8080:8080
expose:
- 50010
volumes:
- shared_data:/shared_data
command: /shared_data/rtlsdr-ogn.conf
devices:
- /dev/bus/usb:/dev/bus/usb
networks:
- receiver
tty: true
stdin_open: true
ogn-decode:
image: ogn-decode
container_name: ogn-decode
restart: unless-stopped
depends_on:
ogn-configuration:
condition: service_healthy
ports:
- 8081:8081
volumes:
- shared_data:/shared_data
command: /shared_data/rtlsdr-ogn.conf
networks:
- receiver
tty: true
stdin_open: true
aprs-proxy:
image: aprs-proxy
container_name: aprs-proxy
restart: unless-stopped
depends_on:
ogn-configuration:
condition: service_healthy
expose:
- 14580
networks:
- receiver
networks:
receiver:
driver: bridge
volumes:
shared_data: