forked from RedhawkSDR/rest-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (61 loc) · 1.42 KB
/
docker-compose.yml
File metadata and controls
66 lines (61 loc) · 1.42 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
version: "3.4"
services:
# OmniORB services
omniorb:
image: geontech/redhawk-omniserver:${REDHAWK_VERSION:-2.0.8}
hostname: omniorb
networks:
- redhawk
# Standard REDHAWK SDR Domain
domain:
image: geontech/redhawk-domain:${REDHAWK_VERSION:-2.0.8}
depends_on:
- omniorb
environment:
- DOMAINNAME=REDHAWK_DEV
- OMNISERVICEIP=omniorb
- OMNISERVICEPORTS=19000:19050
networks:
- redhawk
# Standard GPP
gpp:
image: geontech/redhawk-gpp:${REDHAWK_VERSION:-2.0.8}
depends_on:
- domain
environment:
- DOMAINNAME=REDHAWK_DEV
- NODENAME=GPP_Node
- GPPNAME=GPP
- OMNISERVICEIP=omniorb
- OMNISERVICEPORTS=19100:19150
networks:
- redhawk
# FEI FileReader Device runner mounted to the snapshot.
fei_file_reader:
image: geontech/redhawk-fei-filereader:${REDHAWK_VERSION:-2.0.8}
depends_on:
- domain
environment:
- DOMAINNAME=REDHAWK_DEV
- NODENAME=FEI_FR_Node
- OMNISERVICEIP=omniorb
- OMNISERVICEPORTS=19200:19250
networks:
- redhawk
# REST-Python Unit Under Test (UUT)
rest:
image: ${CONTAINER_TEST_IMAGE:-geontech/redhawk-webserver}
build: ../
depends_on:
- domain
- gpp
- fei_file_reader
environment:
- OMNISERVICEIP=omniorb
command: [sleep, '3600']
networks:
- redhawk
- web
networks:
redhawk:
web: