Ok thanks I'll check this and update the script with the nwc banch ⚑

Reply to this note

Please Login to reply.

Discussion

this error only happens after restart of course, 2nd run...so i edit the entrypoint.sh like this, then restart of container works:

/ # cat entrypoint.sh

#!/bin/sh

echo

echo "------------"

echo " SATDRESS "

echo "------------"

echo

echo "Github repo: https://github.com/braydonf/satdress"

echo "Satdress docker image by PastaGringo: https://github.com/PastaGringo/satdress-docker"

echo

echo "---------------------------"

echo " Docker Compose Env Vars"

echo "---------------------------"

echo

echo "HOST : $HOST"

echo "NOSTRPRIVATEKEY : $NOSTRPRIVATEKEY"

echo "PORT : $PORT"

echo "DOMAIN : $DOMAIN"

echo "SECRET : $SECRET"

echo "SITE_OWNER_URL : $SITE_OWNER_URL"

echo "SITE_OWNER_NAME : $SITE_OWNER_NAME"

echo "SITE_NAME : $SITE_NAME"

echo "PHOENIXD_HOST : $PHOENIXD_HOST"

echo "PHOENIXD_PORT : $PHOENIXD_PORT"

echo "PHOENIXD_KEY : $PHOENIXD_KEY"

echo "USER_ADDRESS : $USER_ADDRESS"

echo

echo "------------------------"

echo " Checking Satdress..."

echo "------------------------"

echo

echo ">>> Satdress has already been configured. Nothing to configure."

cho

echo "------------------------"

echo " Starting Satdress..."

echo "------------------------"

echo

/usr/local/bin/satdress

fi/ #