23 lines
582 B
Bash
Executable File
23 lines
582 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -z "$DOCKER_LOTUS_IMPORT_SNAPSHOT" ]; then
|
|
GATE="$LOTUS_PATH"/date_initialized
|
|
# Don't init if already initialized.
|
|
if [ ! -f "$GATE" ]; then
|
|
echo importing minimal snapshot
|
|
/usr/local/bin/lotus daemon \
|
|
--import-snapshot "$DOCKER_LOTUS_IMPORT_SNAPSHOT" \
|
|
--remove-existing-chain=false \
|
|
--halt-after-import
|
|
# Block future inits
|
|
date > "$GATE"
|
|
fi
|
|
fi
|
|
|
|
# import wallet, if provided
|
|
if [ ! -z "$DOCKER_LOTUS_IMPORT_WALLET" ]; then
|
|
/usr/local/bin/lotus-shed keyinfo import "$DOCKER_LOTUS_IMPORT_WALLET"
|
|
fi
|
|
|
|
exec /usr/local/bin/lotus $@
|