entrypoint update #8

Closed
srw wants to merge 2 commits from entrypoint_update into v1.26.7-rc1
Showing only changes of commit 6d47bcba54 - Show all commits

View File

@ -1,11 +1,11 @@
#!/usr/bin/env bash
echo "WTF IN SH $DOCKER_LOTUS_IMPORT_SNAPSHOT"
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" --halt-after-import
echo "yes" | /usr/local/bin/lotus daemon --import-snapshot "$DOCKER_LOTUS_IMPORT_SNAPSHOT" --halt-after-import
# Block future inits
date > "$GATE"
fi