-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
74 lines (61 loc) · 1.68 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
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
63
64
65
66
67
68
69
70
71
72
73
74
version: "3.2"
services:
common-config: &common_config
image: layer1dot5/utxord-wallet-toolchain:latest
deploy:
resources:
limits:
memory: "6gb"
cpus: "2.0"
shm_size: "2gb"
env_file:
- .env
environment:
- YARN_CACHE_FOLDER=/tmp/yarn_cache
- NODE_OPTIONS=--max-old-space-size=4096
volumes:
- ".:/src"
toolchain-shell:
profiles: ["donotstart"]
<<: *common_config
command: "bash"
build-debug:
profiles: ["donotstart"]
<<: *common_config
command: "bash -c 'pwd ; ls -al ; ls -al / ; ls -al /src ; set ; mount'"
build-wasm-core:
profiles: ["donotstart"]
<<: *common_config
command: "make clean ext-core-lib"
build-wallet-qa:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-qa"
build-wallet-e2e:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-e2e"
build-wallet-utxord:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-utxord"
build-wallet:
profiles: ["donotstart"]
<<: *common_config
command: "make clean ext-utxord"
build-wallet-qa-firefox:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-qa-firefox"
build-wallet-e2e-firefox:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-e2e-firefox"
build-wallet-utxord-firefox:
profiles: ["donotstart"]
<<: *common_config
command: "make ext-build-clean ext-utxord-firefox"
build-wallet-firefox:
profiles: ["donotstart"]
<<: *common_config
command: "make clean ext-utxord-firefox"