-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
37 lines (32 loc) · 1.06 KB
/
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
version: '3.8'
services:
cfd-js-build:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
volumes:
- ./:/workspace
working_dir: /workspace
command: /bin/bash -c "./tools/init_package.sh"
cfd-js-elements-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
volumes:
- ./:/workspace
working_dir: /workspace
command: /bin/bash -c "./wrap_js/__integration_test__/docker-entrypoint.sh cache"
cfd-js-bitcoin-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
volumes:
- ./:/workspace
working_dir: /workspace
command: /bin/bash -c "./wrap_js/__integration_test__/bitcoin-docker-entrypoint.sh cache"
cfd-js-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
volumes:
- ./:/workspace
working_dir: /workspace
command: /bin/bash -c "npm run test_example"
cfd-js-update-package-lock:
image: ghcr.io/cryptogarageinc/elements-testing:v0.1.0
volumes:
- ./:/workspace
working_dir: /workspace
command: /bin/bash -c "./tools/update_package.sh"