I published and build a new docker image for satdress to work only with phoenixd and with 1 user LNURL here: https://github.com/PastaGringo/satdress-docker

Can you please test it and tell me if it answers to your need? Thanks ⚑️

PS: there is no web proxy into the repo, you will need to use your own ;)

Reply to this note

Please Login to reply.

Discussion

NICE!! I will test this later on today, i use cloudflare tunnels so should be no problem! THANKS!!

Ah I see, but you didn't include the new NWC connect branch?

https://github.com/braydonf/satdress/tree/nwc

Nope because I want to go step by step. I'll wait to see if the updates made today are working πŸ˜…

Ok I built the image successfully but have to play with my son now:) ... will try to run it later.

But what was wrong with your other version? I am running it successfully already here : https://zaps.alex71btc.com/

satdress container works only if i edit the entrypoint.sh file inside of running container and remove the starting first time entries, otherwise i get this error:

------------------------

Checking Satdress...

------------------------

> Satdress is started for the first time!

> Configuring Satdress...

- Creating config.yml...

> Configuration is done βœ…

------------------------

Starting Satdress...

------------------------

FTL error loading file: %v error="yaml: unmarshal errors:\n line 14: mapping key \"host\" already defined at line 1\n line 15: mapping key \"port\" already defined at line 2\n line 16: mapping key \"domain\" already defined at line 3\n line 17: mapping key \"siteownername\" already defined at line 4\n line 18: mapping key \"siteownerurl\" already defined at line 5\n line 19: mapping key \"sitename\" already defined at line 6\n line 20: mapping key \"nostrprivatekey\" already defined at line 7\n line 22: mapping key \"users\" already defined at line 9"

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

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/ #