Synology docker node not starting up

Ok this is strange. I got a new static IP for my office and went to make sure my DNS was working as my storj node resolves to DNS. That’s when I noticed it was offline. I removed the storj docker, re-added it using the same format I had been using:

sudo docker run -d --restart unless-stopped --stop-timeout 300 -p 28967:28967 \

-p 14002:14002 \

-e WALLET=“mywallet” \

-e EMAIL=“myemail" \

-e ADDRESS=“myDNSaddress:28967" \

-e STORAGE=“30TB" \

–mount type=bind,source=“/volume1/storj/Identity/storagenode”,destination=/app/identity \

–mount type=bind,source=“/volume1/storj/data”,destination=/app/config \

–name storagenode storjlabs/storagenode:beta

But I get this at the end:

–name storagenode storjlabs/storagenode:beta

Screenshot 2020-05-27 10.07.33

And it doesn’t start.

Running tail gives me this:

$ sudo docker logs --tail 40 storagenode

Password:

Error: No such container: storagenode

Thoughts?

Could you please post your docker run command again, but this time as “Preformatted text”.

sudo docker run -d --restart unless-stopped -p 28967:28967 -p 14002:14002 -e WALLET="WALLET" -e EMAIL="remail" -e ADDRESS=“DNSname:28967" -e BANDWIDTH=“100TB" -e STORAGE=“30TB" --mount type=bind,source="/volume1/storj/Identity/storagenode",destination=/app/identity --mount type=bind,source="/volume1/storj/data",destination=/app/config --name storagenode storjlabs/storagenode:beta

Look at your double-quotes (“), you are using different ones.

This here is working for me:
sudo docker run -d --restart unless-stopped -p 28967:28967 -p 14002:14002 -e WALLET="WALLET" -e EMAIL="remail" -e ADDRESS="DNSname:28967" -e BANDWIDTH="100TB" -e STORAGE="30TB" --mount type=bind,source="/volume1/storj/Identity/storagenode",destination=/app/identity --mount type=bind,source="/volume1/storj/data",destination=/app/config --name storagenode storjlabs/storagenode:beta

Wow, good call. I couldn’t see that myself, not sure where the stylized quotes came from but when I redid it inside a real text editor it all worked. Thanks for your help.