-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathdeposit-cli.yml
More file actions
71 lines (68 loc) · 1.8 KB
/
deposit-cli.yml
File metadata and controls
71 lines (68 loc) · 1.8 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
63
64
65
66
67
68
69
70
71
services:
deposit-cli-builder:
restart: "no"
build:
context: ./ethstaker-deposit-cli
dockerfile: ${DEPCLI_DOCKERFILE}
args:
- BUILD_TARGET=${DEPCLI_SRC_BUILD_TARGET:-'$(git describe --tags $(git rev-list --tags --max-count=1))'}
- SRC_REPO=${DEPCLI_SRC_REPO:-https://github.com/ethstaker/ethstaker-deposit-cli}
- DOCKER_TAG=${DEPCLI_DOCKER_TAG:-latest}
- DOCKER_REPO=${DEPCLI_DOCKER_REPO:-ghcr.io/ethstaker/ethstaker-deposit-cli}
image: ethstaker-deposit-cli:local
pull_policy: never
entrypoint: ["true"]
deposit-cli-new:
profiles: ["tools"]
restart: "no"
image: ethstaker-deposit-cli:local
pull_policy: never
depends_on:
deposit-cli-builder:
condition: service_completed_successfully
volumes:
- ./.eth:/app/.eth/
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- new-mnemonic
- --chain
- ${NETWORK}
deposit-cli-existing:
profiles: ["tools"]
restart: "no"
image: ethstaker-deposit-cli:local
pull_policy: never
depends_on:
deposit-cli-builder:
condition: service_completed_successfully
volumes:
- ./.eth:/app/.eth/
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- existing-mnemonic
- --chain
- ${NETWORK}
deposit-cli-change:
profiles: ["tools"]
restart: "no"
image: ethstaker-deposit-cli:local
pull_policy: never
depends_on:
deposit-cli-builder:
condition: service_completed_successfully
volumes:
- ./.eth:/app/.eth
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- generate-bls-to-execution-change
- --chain
- ${NETWORK}