-
Notifications
You must be signed in to change notification settings - Fork 232
/
deposit-cli.yml
70 lines (70 loc) · 2.28 KB
/
deposit-cli.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
services:
deposit-cli-new:
profiles: ["tools"]
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/eth-educators/ethstaker-deposit-cli}
- DOCKER_TAG=${DEPLCI_DOCKER_TAG:-latest}
- DOCKER_REPO=${DEPLCI_DOCKER_REPO:-ghcr.io/eth-educators/ethstaker-deposit-cli}
image: ethstaker-deposit-cli:local
pull_policy: never
volumes:
- ./.eth:/app/.eth/
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- new-mnemonic
- --chain
- ${NETWORK}
deposit-cli-existing:
profiles: ["tools"]
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/eth-educators/ethstaker-deposit-cli}
- DOCKER_TAG=${DEPLCI_DOCKER_TAG:-latest}
- DOCKER_REPO=${DEPLCI_DOCKER_REPO:-ghcr.io/eth-educators/ethstaker-deposit-cli}
image: ethstaker-deposit-cli:local
pull_policy: never
volumes:
- ./.eth:/app/.eth/
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- existing-mnemonic
- --chain
- ${NETWORK}
deposit-cli-change:
profiles: ["tools"]
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/eth-educators/ethstaker-deposit-cli}
- DOCKER_TAG=${DEPLCI_DOCKER_TAG:-latest}
- DOCKER_REPO=${DEPLCI_DOCKER_REPO:-ghcr.io/eth-educators/ethstaker-deposit-cli}
restart: "no"
image: ethstaker-deposit-cli:local
pull_policy: never
volumes:
- ./.eth:/app/.eth
entrypoint:
- docker-entrypoint.sh
- python3
- -m
- ethstaker_deposit
- generate-bls-to-execution-change
- --chain
- ${NETWORK}