-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
36 lines (33 loc) · 919 Bytes
/
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
version: '3.5'
services:
dev:
image: "fauxneticien/qbe-std_feats_eval"
volumes:
# For development use,
# mount entire repo, including scripts
- ${PWD}:/home/qbe-std_feats_eval
working_dir: /home/qbe-std_feats_eval
entrypoint:
- /bin/bash
stdin_open: true
tty: true
prod:
image: "fauxneticien/qbe-std_feats_eval"
volumes:
# For 'production' use,
# mount only data directory
- ${PWD}/data:/home/qbe-std_feats_eval/data
working_dir: /home/qbe-std_feats_eval
entrypoint:
- /bin/bash
stdin_open: true
tty: true
shennong:
image: "fauxneticien/shennong"
volumes:
- ${PWD}:/tmp
working_dir: /tmp
entrypoint:
- /bin/bash
stdin_open: true
tty: true