-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
76 lines (72 loc) · 1.72 KB
/
compose.yml
File metadata and controls
76 lines (72 loc) · 1.72 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
67
68
69
70
71
72
73
74
75
76
services:
ricbot:
restart: always
network_mode: host
platform: "linux/arm64"
# just the basic robot (headless, runs drivers, publishes description)
build:
context: ./
dockerfile: ./docker/Dockerfile-robot
platforms:
- "linux/arm64"
args:
ROS_DISTRO: jazzy
image: ghcr.io/helloric/ricbot:latest
environment:
- PYTHONUNBUFFERED=1 # important to show error messages if a ros service crashes!
volumes:
# logs for debugging
- ./roslog:/root/.ros/
devices:
# USB devices to connect to kobuki and Lidar
- /dev/bus/usb/:/dev/bus/usb/
- /dev/kobuki:/dev/kobuki
- /dev/lidar:/dev/lidar
ui:
restart: always
platform: "linux/arm64"
depends_on:
- ui_com
image: ghcr.io/helloric/svelte-ui:latest
build:
context: ./svelte-ui/
dockerfile: ./docker/Dockerfile
ports:
- 80:5173
ui_com:
restart: always
network_mode: host
platform: "linux/arm64"
image: ghcr.io/helloric/helloric_ui_com:latest
build:
context: ./helloric_ui_com/
dockerfile: ./Dockerfile
args:
ROS_DISTRO: jazzy
environment:
- PYTHONUNBUFFERED=1
ports:
- 7000:7000
teleop:
network_mode: host
platform: "linux/arm64"
build:
context: ./
dockerfile: ./docker/Dockerfile-teleop
args:
ROS_DISTRO: jazzy
stdin_open: true
tty: true
image: ghcr.io/helloric/teleop:latest
ds4:
network_mode: host
platform: "linux/arm64"
build:
context: ./
dockerfile: ./docker/Dockerfile-ds4
args:
ROS_DISTRO: jazzy
devices:
- /dev:/dev
privileged: true
image: ghcr.io/helloric/ds4:latest