Did you see this nostr:npub1ky4kxtyg0uxgw8g5p5mmedh8c8s6sqny6zmaaqj44gv4rk0plaus3m4fd2?
Will you try to make a docker image again?
I just completed a Zap from #Amethyst from #phoenixd with Nostr Wallet Connect.
Work-in-progress for #NWC support for phoenixd is here:
https://github.com/braydonf/satdress/tree/nwc
I also added a CLI tool for exporting the NWC connection string and QRcode from the terminal.
Did you see this nostr:npub1ky4kxtyg0uxgw8g5p5mmedh8c8s6sqny6zmaaqj44gv4rk0plaus3m4fd2?
Will you try to make a docker image again?
Hi, I'll check this and let you know! β‘
Great! It's just work in progress until now from Braydon i guess, but got it working nicely on my Ubuntu desktop PC , also made some native zaps with phoenixd via NWC . Awesome.
But in Container I could run it 24/7 o Umbrel Portainer app.
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 ;)
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?
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/
new conatiner working fine:
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...
------------------------
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/ #