We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0d1af commit 019d5e3Copy full SHA for 019d5e3
Makefile
@@ -11,7 +11,9 @@ install-acme:
11
create-genesis:
12
docker build -t bas-genesis-config ./genesis
13
rm -rf ./genesis.json
14
- docker run --rm -v ${PWD}/config.json:/config.json -t bas-genesis-config /config.json > ./genesis.json
+ CHAIN_ID=1 envsubst < config.json > tmp_config.json
15
+ docker run --rm -v ${PWD}/config.json:/tmp_config.json -t bas-genesis-config /config.json > ./genesis.json
16
+ rm -f tmp_config.json
17
18
.PHONY: run-blockchain
19
run-blockchain:
0 commit comments