-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 813 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (39 loc) · 813 Bytes
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
version: '3'
services:
test-pyprom:
image: marchowes/pyprom-test:2.5
build:
context: .
dockerfile: Dockerfile.pyprom-test
environment:
- PATH=$PATH:/usr/local/bin
entrypoint: ["make", "test"]
volumes:
- ./:/pyProm
working_dir:
/pyProm
pyprom:
image: marchowes/pyprom-app:2.5
build:
context: .
dockerfile: Dockerfile.pyprom
environment:
- PATH=$PATH:/usr/local/bin
entrypoint: ["ipython"]
volumes:
- ./:/pyProm
working_dir:
/pyProm
pyprom-dev:
image: marchowes/pyprom-dev
build:
context: .
dockerfile: docker/Dockerfile
args:
GDAL_VERSION: 3.6.0
PYTHON_VERSION: 3.11
entrypoint: ['bash']
volumes:
- ./:/pyProm
working_dir:
/pyProm