Retrieve information (mail, wallet, etc.) from first node execution

Hello,

I had not save the command use to launch my node :
docker run -d --restart unless-stopped --stop-timeout 300
-p 28967:28967
-p 127.0.0.1:14002:14002
-e WALLET=“0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX”
-e EMAIL="user@example.com"
-e ADDRESS=“domain.ddns.net:28967
-e STORAGE=“2TB”
–mount type=bind,source="",destination=/app/identity
–mount type=bind,source="",destination=/app/config
–name storagenode storjlabs/storagenode:beta

And I want to retrieve information write on it. I have retrieve all except mail and port use for dashboard.
Where can I find it ? It does not appear in my command history because it is to old.

Thanks for your help.

Jonathan

I have find the answer :
Just do
docker inspect storagenode

And see the part “env”

1 Like

…and for the next time, save that command in a shell script and run it from there.

3 Likes

Thanks you, good idea.

1 Like