ryan
May 27, 2020, 2:06pm
1
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
And it doesn’t start.
Running tail gives me this:
$ sudo docker logs --tail 40 storagenode
Password:
Error: No such container: storagenode
Thoughts?
thej
May 27, 2020, 3:48pm
2
Could you please post your docker run command again, but this time as “Preformatted text”.
ryan
May 27, 2020, 4:01pm
3
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
thej
May 27, 2020, 4:07pm
4
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
ryan
May 27, 2020, 4:12pm
5
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.