-
Notifications
You must be signed in to change notification settings - Fork 17
/
docker-compose.yml
157 lines (148 loc) · 3.91 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
version: "2.4"
services:
build_ros:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_build
volumes:
- .:/lanefollowing
network_mode: host
init: true
privileged: true
command: /lanefollowing/scripts/build.sh
collect:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_collect
volumes:
- .:/lanefollowing
environment:
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
command: /lanefollowing/scripts/collect.sh
preprocess:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_preprocess
volumes:
- .:/lanefollowing
environment:
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
command: ["python", "-u", "/lanefollowing/ros2_ws/src/lane_following/train/preprocess.py"]
train:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_train
volumes:
- .:/lanefollowing
environment:
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
command: ["python", "-u", "/lanefollowing/ros2_ws/src/lane_following/train/train.py"]
drive:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_drive
volumes:
- .:/lanefollowing
environment:
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
command: /lanefollowing/scripts/drive.sh
drive_visual:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_drive_visual
volumes:
- ${XAUTHORITY}:/tmp/.Xauthority
- /tmp/.X11-unix:/tmp/.X11-unix
- .:/lanefollowing
environment:
- DISPLAY
- XAUTHORITY=/tmp/.Xauthority
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
command: /lanefollowing/scripts/drive_visual.sh
drive_cpu:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_drive_cpu
volumes:
- ${XAUTHORITY}:/tmp/.Xauthority
- /tmp/.X11-unix:/tmp/.X11-unix
- .:/lanefollowing
environment:
- DISPLAY
- XAUTHORITY=/tmp/.Xauthority
- QT_X11_NO_MITSHM=1
- LIBOVERLAY_SCROLLBAR=0
- GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc
- GTK_THEME=Adwaita
- CUDA_VISIBLE_DEVICES=-1
network_mode: host
init: true
command: /lanefollowing/scripts/drive.sh
drive_visual_cpu:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_drive_visual_cpu
volumes:
- ${XAUTHORITY}:/tmp/.Xauthority
- /tmp/.X11-unix:/tmp/.X11-unix
- .:/lanefollowing
environment:
- DISPLAY
- XAUTHORITY=/tmp/.Xauthority
- QT_X11_NO_MITSHM=1
- LIBOVERLAY_SCROLLBAR=0
- GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc
- GTK_THEME=Adwaita
- CUDA_VISIBLE_DEVICES=-1
- TF_NEED_CUDA=0
network_mode: host
init: true
command: /lanefollowing/scripts/drive_visual.sh
jupyter:
build:
context: .
image: lgsvl/lanefollowing:latest
container_name: lanefollowing_jupyter
volumes:
- .:/lanefollowing
environment:
- QT_X11_NO_MITSHM=1
- LIBOVERLAY_SCROLLBAR=0
- GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc
- GTK_THEME=Adwaita
- CUDA_CACHE_PATH=/lanefollowing/docker/.nv
runtime: nvidia
network_mode: host
init: true
privileged: true
tty: true
stdin_open: true
command: ["/run_jupyter.sh", "--allow-root", "--ip=localhost"]