-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
33 lines (30 loc) · 996 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
version: '3.5'
services:
cfd-py-build:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
environment:
CFD_SRC: /private/cfd-python
CFD_WORK: /private/work/cfd-python
working_dir: /private/cfd-python
volumes:
- /private/work
- .:/private/cfd-python
working_dir: /private/cfd-python
command: /bin/bash -c "./tools/build_for_docker.sh"
cfd-py-integration-test:
image: ghcr.io/ko-matsu/elements-testing:v0.0.5
volumes:
- ./integration_test:/root/integration_test
working_dir: /root/integration_test
entrypoint: /bin/bash -c "./test_entrypoint.sh"
cfd-py-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
environment:
CFD_SRC: /private/cfd-python
CFD_WORK: /private/work/cfd-python
working_dir: /private/cfd-python
volumes:
- /private/work
- .:/private/cfd-python
working_dir: /private/cfd-python
command: /bin/bash -c "./tools/build_and_test_for_docker.sh"