-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
67 lines (62 loc) · 1.14 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
services:
python27:
build:
context: .
args:
IMAGE: python:2.7-buster
PIP: pip
PYTHON_VERSION: 2
image: python27-pytest
volumes:
- .:/app
python36:
build:
context: .
args:
IMAGE: python:3.6-buster
PIP: pip
PYTHON_VERSION: 3
image: python36-pytest
volumes:
- .:/app
python310:
build:
context: .
args:
IMAGE: python:3.10-buster
PIP: pip
PYTHON_VERSION: 3
image: python310-pytest
volumes:
- .:/app
amazonlinux:
build:
context: .
args:
IMAGE: amazonlinux
PIP: pip3
PYTHON_VERSION: 3
image: amazonlinux-pytest
volumes:
- .:/app
centos7:
build:
context: .
args:
IMAGE: centos/python-27-centos7
PIP: pip
PYTHON_VERSION: 2
image: centos7-pytest
volumes:
- .:/app
# https://github.com/sickcodes/Docker-OSX
osx:
build:
context: .
args:
IMAGE: sickcodes/docker-osx
PIP: python -m pip
PYTHON_VERSION: 3
image: osx-pytest
volumes:
- .:/app