How should I change dynamic domain name in raspberry pi?

How should I change dynamic domain name in raspberry pi ? My free dynamic DNS service is about to expire. If I change the dynamic domain name, whether the node is timing again ?
How should I do that?

Are you running your node on linux?
If yes, here are the steps.

First stop and remove the docker container for your node. Example:

docker stop -t 600 <your node>
docker rm <your node>

Then create a new container with the new DDNS-address. It’s the same command as you started at the beginning. Example:

docker run -d --restart unless-stopped \
 -p 28967:28967/tcp \
 -p 28967:28967/udp \
 -p 14002:14002 \
 -e WALLET="<your payout address>" \
 -e EMAIL="<your email>" \
 -e ADDRESS="<insert new DDNS-address here>" \
 -e BANDWIDTH="xxTB" \
 -e STORAGE="xxxxGB" \
 --mount type=bind,source="<your identity path>",destination=/app/identity \
 --mount type=bind,source="<your storage path>",destination=/app/config \
 --name <your node>  storjlabs/storagenode:latest
1 Like

-e ADDRESS="<insert new DDNS-address here>:<port>" \

1 Like