-
Notifications
You must be signed in to change notification settings - Fork 26
/
docker-compose.yml
47 lines (44 loc) · 955 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
37
38
39
40
41
42
43
44
45
46
47
version: "3.7"
services:
dot_jwt:
build:
context: .
args:
- PY_VERSION=3.8
dockerfile: Dockerfile.dev
container_name: dot_jwt
image: dot_jwt
volumes:
- .:/home/python/code
entrypoint:
- /home/python/.local/bin/tox
- -e
- py38-django22,py38-django30,flake8
dot_jwt_37:
build:
context: .
args:
- PY_VERSION=3.7
dockerfile: Dockerfile.dev
container_name: dot_jwt_37
image: dot_jwt_37
volumes:
- .:/home/python/code
entrypoint:
- /home/python/.local/bin/tox
- -e
- py37-django22,py37-django30,flake8
dot_jwt_36:
build:
context: .
args:
- PY_VERSION=3.6
dockerfile: Dockerfile.dev
container_name: dot_jwt_36
image: dot_jwt_36
volumes:
- .:/home/python/code
entrypoint:
- /home/python/.local/bin/tox
- -e
- py36-django22,py36-django30,flake8