-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (34 loc) · 989 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (34 loc) · 989 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
version: '3.8'
services:
foxglove_bridge:
build:
context: ./docker/foxglove_bridge/
dockerfile: Dockerfile
image: foxglove-bridge:latest
container_name: foxglove_bridge
command: ros2 launch foxglove_bridge foxglove_bridge_launch.xml port:=8765
network_mode: host
stdin_open: true
tty: true
autoware:
image: ghcr.io/autowarefoundation/autoware:latest-runtime-cuda
container_name: autoware
command: bash
runtime: nvidia
privileged: true
environment:
- DISPLAY=:1
- XAUTHORITY=/run/user/1000/gdm/Xauthority
- XDG_RUNTIME_DIR=/run/user/1000
- NVIDIA_DRIVER_CAPABILITIES=all
volumes:
- /tmp/.X11-unix/:/tmp/.X11-unix
- /etc/localtime:/etc/localtime:ro
- ${LOCAL_AUTOWARE_DATA}:/autoware_data:ro
- ${LOCAL_AUTOWARE_MAPS}p:/autoware_map:ro
network_mode: host
stdin_open: true
tty: true
depends_on:
foxglove_bridge:
condition: service_started