-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
62 lines (62 loc) · 1.38 KB
/
docker-compose.yaml
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
version: '3'
services:
dev:
build:
context: .
dockerfile: Dockerfile
tty: true
volumes:
- .:/pyxlimg
- venv:/pyxlimg/.venv
- dev_pip:/pyxlimg/.cache/pip
- dev_test:/pyxlimg/.pytest_cache/
command: ["/bin/bash" ]
py312:
image: python:3.12
volumes:
- .:/home/node
- py312_pip:/home/node/.cache/pip
- py312_test:/home/node/.pytest_cache/
command: [ "/home/node/entrypoint.sh" ]
py311:
image: python:3.11
volumes:
- .:/home/node
- py311_pip:/home/node/.cache/pip
- py311_test:/home/node/.pytest_cache/
command: [ "/home/node/entrypoint.sh" ]
py310:
image: python:3.10
volumes:
- .:/home/node
- py310_pip:/home/node/.cache/pip
- py310_test:/home/node/.pytest_cache/
command: [ "/home/node/entrypoint.sh" ]
py309:
image: python:3.9
volumes:
- .:/home/node
- py309_pip:/home/node/.cache/pip
- py309_test:/home/node/.pytest_cache/
command: [ "/home/node/entrypoint.sh" ]
py308:
image: python:3.8
volumes:
- .:/home/node
- py308_pip:/home/node/.cache/pip
- py308_test:/home/node/.pytest_cache/
command: [ "/home/node/entrypoint.sh" ]
volumes:
py312_pip:
py312_test:
py311_pip:
py311_test:
py310_pip:
py310_test:
py309_pip:
py309_test:
py308_pip:
py308_test:
venv:
dev_pip:
dev_test: