forked from p2pderivatives/cfd-js
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (54 loc) · 1.79 KB
/
docker-compose.yml
File metadata and controls
62 lines (54 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
version: '3.8'
services:
cfd-js-build:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/workspace/workdir
working_dir: /workspace/workdir
command: /bin/bash -c "./tools/init_package.sh"
cfd-js-elements-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/workspace/workdir
working_dir: /workspace/workdir
command: /bin/bash -c "./wrap_js/__integration_test__/docker-entrypoint.sh cache"
cfd-js-bitcoin-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/workspace/workdir
working_dir: /workspace/workdir
command: /bin/bash -c "./wrap_js/__integration_test__/bitcoin-docker-entrypoint.sh cache"
cfd-js-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/workspace/workdir
working_dir: /workspace/workdir
command: /bin/bash -c "npm run test_example"
cfd-js-update-package-lock:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/workspace/workdir
working_dir: /workspace/workdir
command: /bin/bash -c "./tools/update_package.sh"
cfd-js-debian-test:
image: ghcr.io/cryptogarageinc/elements-testing:v0.2.3
volumes:
- ./:/github/workspace
working_dir: /github/workspace
command: /bin/bash -c "./tools/test_entrypoint.sh"
# release asset only
cfd-js-alpine315-test:
image: node:16.17.0-alpine3.15
volumes:
- ./:/github/workspace
working_dir: /github/workspace
user: node
command: /bin/ash -c "./tools/test_entrypoint.sh"
# release asset only
cfd-js-alpine316-test:
image: node:16.17.0-alpine3.16
volumes:
- ./:/github/workspace
working_dir: /github/workspace
user: node
command: /bin/ash -c "./tools/test_entrypoint.sh"