-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
104 lines (97 loc) · 2.2 KB
/
docker-compose.yml
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
102
103
104
version: '3'
services:
omniNames:
image: redhawk-compose/omniserver:${rhver:-latest}
restart: always
environment:
- nameserver=localhost
- eventserver=localhost
networks:
- rhnet
ports:
- ${nameserver_port:-2809}:2809
command:
- /usr/local/bin/omniNames.sh
omniEvents:
image: redhawk-compose/omniserver:${rhver:-latest}
restart: always
links:
- omniNames
environment:
- nameserver=omniNames
- eventserver=localhost
networks:
- rhnet
ports:
- ${eventserver_port:-11169}:11169
command:
- /usr/local/bin/omniEvents.sh
domain:
image: redhawk-compose/domain:${rhver:-latest}
restart: always
links:
- omniNames
- omniEvents
environment:
- nameserver=omniNames
- eventserver=omniEvents
- domainname=${domainname:-REDHAWK_COMPOSE}
networks:
- rhnet
command:
- /usr/local/bin/startDomain.sh
gpp:
image: redhawk-compose/gpp:${rhver:-latest}
depends_on: ['domain']
restart: always
links:
- omniNames
- omniEvents
environment:
- nameserver=omniNames
- eventserver=omniEvents
- domainname=${domainname:-REDHAWK_COMPOSE}
networks:
- rhnet
command:
- /usr/local/bin/startGPP.sh
rtl:
image: redhawk-compose/rtl:${rhver:-latest}
depends_on: ['domain']
restart: always
links:
- omniNames
- omniEvents
environment:
- nameserver=omniNames
- eventserver=omniEvents
- domainname=${domainname:-REDHAWK_COMPOSE}
- group_id=MyRTL
- bias_enable=${rtl_bias_enable:-0}
- digital_agc_enable=${rtl_digital_agc_enable:-0}
- debug=3
volumes:
- /dev/usb:/dev/usb
privileged: true
networks:
- rhnet
command:
- /usr/local/bin/startRTL.sh
ide:
image: redhawk-compose/ide:${rhver:-latest}
depends_on: ['domain']
links:
- omniNames
- omniEvents
environment:
- nameserver=omniNames
- eventserver=omniEvents
- DISPLAY=$DISPLAY
volumes:
- "/tmp/.X11-unix:/tmp/.X11-unix"
networks:
- rhnet
command:
- /usr/bin/rhide
networks:
rhnet: