what I’m doing wrong?
docker run -d --restart unless-stopped --stop-timeout 300 \
-p 28967:28967 \
-e PUID=501 \
-e PGID=20 \
-p 127.0.0.1:14002:14002 \
-e WALLET="0xMYWALLET" \
-e EMAIL="myusername@gmail.com" \
-e ADDRESS="myusername.ddns.net:28967" \
-e STORAGE="1TB" \
--mount type=bind,source="/Users/myusername/Library/Application\ Support/Storj/Identity/storagenode",destination=/app/identity \
--mount type=bind,source="/Volumes/4TB\ 2018\ II/__storj",destination=/app/config \
--name storagenode storjlabs/storagenode:beta
After that I always get this error:
docker: Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /Users/myusername/Library/Application\ Support/Storj/Identity/storagenode.
See 'docker run --help'.
Can anyone help me out? thanks!