Synology Change Node IP Address

Hi Guys,
i just changed ISP and before i cancel my old ISP provider, i want to change my IP but how do i do that when its running docker on synology? i cant change the docker container, tells me to duplicate it

nevermind i got it.

i did the following:

sudo docker stop -t 300 storagenode
sudo docker rm storagenode
sudo docker pull storjlabs/storagenode:latest
sudo docker run -d --restart unless-stopped --stop-timeout 300 \
    -p 28967:28967/tcp \
    -p 28967:28967/udp \
    -p 127.0.0.1:14002:14002 \
    -e WALLET="0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" \
    -e EMAIL="user@example.com" \
    -e ADDRESS="domain.ddns.net:28967" \
    -e STORAGE="2TB" \
    --user $(id -u):$(id -g) \
    --mount type=bind,source="<identity-dir>",destination=/app/identity \
    --mount type=bind,source="<storage-dir>",destination=/app/config \
    --name storagenode storjlabs/storagenode:latest
1 Like

Fastest, esasiest, most well put-together support thread this forum has ever had. Good stuff OP :slight_smile:

1 Like