forked from py-vobject/vobject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
56 lines (56 loc) · 1.06 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
services:
# Lint check services
lint2:
build:
context: .
dockerfile: extras/Dockerfile2.lint
args:
PYTHON_VERSION: 2.7
image: lint:py27
volumes:
- .:/app
lint:
build:
context: .
dockerfile: extras/Dockerfile.lint
args:
PYTHON_VERSION: 3.8
image: lint:py38
volumes:
- .:/app
# Unittest services
py27:
build:
context: .
dockerfile: extras/Dockerfile
args:
PYTHON_VERSION: 2.7
image: vobject:py27
py39:
build:
context: .
dockerfile: extras/Dockerfile
args:
PYTHON_VERSION: 3.9
image: vobject:py39
py310:
build:
context: .
dockerfile: extras/Dockerfile
args:
PYTHON_VERSION: "3.10"
image: vobject:py310
py311:
build:
context: .
dockerfile: extras/Dockerfile
args:
PYTHON_VERSION: 3.11
image: vobject:py311
py312:
build:
context: .
dockerfile: extras/Dockerfile
args:
PYTHON_VERSION: 3.12
image: vobject:py312