forked from datarobot/batch-scoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (53 loc) · 1.13 KB
/
docker-compose.yml
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
version: "2"
services:
python26:
image: batch-scoring-2.6
build:
context: .
dockerfile: Dockerfile-2.6
volumes:
- .:/opt/project
python27:
image: batch-scoring-2.7
build:
context: .
dockerfile: Dockerfile-2.7
volumes:
- .:/opt/project
python33:
image: batch-scoring-3.3
build:
context: .
dockerfile: Dockerfile-3.3
volumes:
- .:/opt/project
python34:
image: batch-scoring-3.4
build:
context: .
dockerfile: Dockerfile-3.4
volumes:
- .:/opt/project
python35:
image: batch-scoring-3.5
build:
context: .
dockerfile: Dockerfile-3.5
volumes:
- .:/opt/project
python27-dbg:
image: batch-scoring-2.7-dbg
privileged: true
build:
context: .
dockerfile: Dockerfile-2.7-dbg
volumes:
- .:/opt/project
centos5pyinstaller:
image: pyinstaller-centos5-py35-build
privileged: true
build:
context: .
dockerfile: Dockerfile-pyinstaller-centos5-py35-build
volumes:
- .:/batch-scoring