My nodes has been up and running for several days and everything works well.
In order to be able to relaunch the node in the future, I would like to know how can I retrieve the environments variabels (and other options) used when I first launched the “docker run” command.
To be clear, I am talking about this command (described in the setup tutorial):
docker run -d --restart unless-stopped -p 28967:28967 \
-e WALLET="0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" \
-e EMAIL="user@example.com" \
-e ADDRESS="domain.ddns.net:28967" \
-e BANDWIDTH="20TB" \
-e STORAGE="2TB" \
--mount type=bind,source="<identity-dir>",destination=/app/identity \
--mount type=bind,source="<storage-dir>",destination=/app/config \
--name storagenode storjlabs/storagenode:beta
I tried to run “docker ps” but it doesn’t give me the options I used when I launched the container.
Thank you all for your help!