-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (46 loc) · 1.1 KB
/
docker-compose.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
version: '3'
services:
nginx:
image: nginx
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
network_mode: "host"
restart: always
rosblox-studio:
image: ghcr.io/rosblox/studio:latest
volumes:
- ./studio/layout.json:/src/layout.json
ports:
- 8080:8080
restart: always
ros-foxglove-bridge:
image: ghcr.io/rosblox/ros-foxglove-bridge:humble
restart: always
network_mode: "host"
ipc: host
pid: host
environment:
- UID=${HOST_UID}
command: su - ros /run.sh
ros-rosbridge-suite:
image: ghcr.io/rosblox/ros-rosbridge-suite:humble
restart: always
network_mode: "host"
ipc: host
pid: host
environment:
- UID=${HOST_UID}
command: su - ros /run.sh
ros-bag-recorder:
image: ghcr.io/rosblox/ros-bag-recorder:humble
restart: always
network_mode: "host"
privileged: true
ipc: host
pid: host
environment:
- UID=${HOST_UID}
- ROS_DOMAIN_ID
volumes:
- ~/rosblox/bags:/bags
command: su - ros --whitelist-environment=ROS_DOMAIN_ID /run.sh