-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (51 loc) · 951 Bytes
/
docker-compose.yml
File metadata and controls
52 lines (51 loc) · 951 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3'
services:
3dsdev:
build:
context: ./Dockerfiles
dockerfile: Dockerfile.3dsdev
container_name: 3dsdev
image: 3dsdev:latest
volumes:
- repo:/3DScannerRepo
- log:${APP_ROOT}/log
- src:${APP_ROOT}/src
- scripts:${APP_ROOT}/scripts
- docs:${APP_ROOT}/docs
privileged: ${DEVSYS_PRIV:-false}
stdin_open: true
tty: true
#
# Volume definition
#
volumes:
repo:
driver: local
driver_opts:
type: none
device: ${VOL_DIR}/
o: bind
log:
driver: local
driver_opts:
type: none
device: ${VOL_DIR}/log
o: bind
src:
driver: local
driver_opts:
type: none
device: ${VOL_DIR}/src
o: bind
scripts:
driver: local
driver_opts:
type: none
device: ${VOL_DIR}/scripts
o: bind
docs:
driver: local
driver_opts:
type: none
device: ${VOL_DIR}/docs
o: bind