-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
45 lines (44 loc) · 917 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
45 lines (44 loc) · 917 Bytes
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
services:
camera1:
container_name: camera1
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
environment:
- CAM=1
devices:
- /dev/video0
command: ["./start-camera.sh"]
restart: always
camera2:
container_name: camera2
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
environment:
- CAM=2
devices:
- /dev/video2
command: ["./start-camera.sh"]
restart: always
tcp:
container_name: tcp
image: "frc4048-ros2"
network_mode: host
privileged: true
ipc: host
command: ["./start-tcp.sh"]
restart: unless-stopped
lifesigns:
container_name: lifesigns
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
environment:
- PUB_ROS=0
- PUB_NT=1
command: ["./start-lifesigns.sh"]
restart: unless-stopped