-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-prod.yml
76 lines (75 loc) · 1.69 KB
/
docker-compose-prod.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
version: "3.8"
services:
# NOTE: exposed ports are for debug purposes only. Volume mounts are for both debug and logging.
fsw:
image: "ghcr.io/traclabs/brash_docker:cfs"
command: "./core-cpu2"
environment:
- DISPLAY=novnc:0.0
# Enable 123 forwarding to access/test the cFE NTP server from outside docker
# ports:
# - "123:123/udp"
sysctls:
- fs.mqueue.msg_max=64
networks:
spaceip:
ipv4_address: 10.5.0.3
build:
context: .
dockerfile: cfs.Dockerfile
target: cfs
args:
- USER_UID=${UID:-1000}
rosgsw:
image: "ghcr.io/traclabs/brash_docker:rosgsw"
command: "./run_rosgsw.sh"
env_file:
- env.sh
environment:
- ROS_DOMAIN_ID=2
- DISPLAY=novnc:0.0
networks:
spaceip:
ipv4_address: 10.5.0.2
build:
context: .
dockerfile: brash.Dockerfile
target: rosgsw
args:
- USER_UID=${UID:-1000}
rosfsw:
image: "ghcr.io/traclabs/brash_docker:rosfsw"
command: "./run_rosfsw.sh"
env_file:
- env.sh
environment:
- ROS_DOMAIN_ID=4
- DISPLAY=novnc:0.0
networks:
spaceip:
ipv4_address: 10.5.0.4
build:
context: .
dockerfile: brash.Dockerfile
target: rosfsw
args:
- USER_UID=${UID:-1000}
novnc:
image: theasp/novnc:latest
environment:
# Adjust to your screen size
- DISPLAY_WIDTH=1920
- DISPLAY_HEIGHT=1080
- RUN_XTERM=no
ports:
- "8080:8080"
networks:
spaceip:
ipv4_address: 10.5.0.5
networks:
spaceip:
driver: bridge
ipam:
config:
- subnet: 10.5.0.0/16
gateway: 10.5.0.1