forked from p2pderivatives/cfd-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (46 loc) · 1.58 KB
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (46 loc) · 1.58 KB
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
version: '3.5'
services:
cfd-py-build:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
environment:
CFD_SRC: /private/cfd-python
CFD_WORK: /workspace/workdir
working_dir: /private/cfd-python
volumes:
- .:/private/cfd-python
working_dir: /private/cfd-python
command: /bin/bash -c "./tools/build_for_docker.sh"
cfd-py-integration-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./integration_test:/private/cfd-python/integration_test
working_dir: /private/cfd-python/integration_test
entrypoint: /bin/bash -c "./test_entrypoint.sh"
cfd-py-bitcoin-integration-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./integration_test:/private/cfd-python/integration_test
working_dir: /private/cfd-python/integration_test
entrypoint: /bin/bash -c "./test_bitcoin_entrypoint.sh"
cfd-py-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
environment:
CFD_SRC: /private/cfd-python
CFD_WORK: /workspace
working_dir: /private/cfd-python
volumes:
- .:/private/cfd-python
working_dir: /private/cfd-python
command: /bin/bash -c "./tools/build_and_test_for_docker.sh"
cfd-py-ubuntu2204-test:
build:
context: .
dockerfile: ./docker/ubuntu2204.dockerfile
environment:
CFD_SRC: /private/cfd-python
CFD_WORK: /workspace
working_dir: /private/cfd-python
volumes:
- .:/private/cfd-python
working_dir: /private/cfd-python
command: /bin/bash -c "./tools/build_and_test_for_docker.sh"