-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
61 lines (61 loc) · 1.33 KB
/
docker-compose.yaml
File metadata and controls
61 lines (61 loc) · 1.33 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
version: "3"
services:
camera:
container_name: camera
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
devices:
- /dev/video0
command: ["./start-arducam.sh"]
restart: always
inverse:
container_name: inverse
image: "frc4048-ros2"
network_mode: host
privileged: true
ipc: host
command: ["./start-inverse.sh"]
restart: unless-stopped
odometry:
container_name: odometry
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
environment:
- PUB_ROS=0
- PUB_NT=1
command: ["./start-odometry.sh"]
restart: unless-stopped
detection:
container_name: detection
image: "frc4048-ros2"
network_mode: host
ipc: host
privileged: true
environment:
- PUB_ROS=0
- PUB_NT=1
command: ["./start-detection.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
# autoheal:
# container_name: healer
# image: "willfarrell/autoheal"
# volumes:
# - "/var/run/docker.sock:/var/run/docker.sock"
# environment:
# - AUTOHEAL_INTERVAL=1
# restart: always