Repository name must be lowercase?

I realize this has to be something stupid I’m overlooking, but no matter what I try, when I try to run for the first time, I receive the error message

C:\Program Files\Docker\Docker\Resources\bin\docker.exe: invalid reference format: repository 
name must be lowercase.
See 'C:\Program Files\Docker\Docker\Resources\bin\docker.exe run --help'.

For reference sake, the command I’m running is the following. I was following the documentation to a T as far as I could tell, so I’m not sure why this is wrong.

docker run -d --restart unless-stopped -p 4001:28967 -p 127.0.0.1:14002:14002 -e WALLET=" 
<censored>" -e EMAIL="<censored>" ADDRESS="<censored>" -e BANDWIDTH="2TB" -e 
STORAGE="500GB" --mount type=bind,source="<censored but I've verified it's all lower case and 
with no spaces>",destination=/app/identity --mount 
type=bind,source="g:\\storj",destination=/app/config --name storagenode 
storjlabs/storagenode:beta

I’m not too familiar with Windows and docker, however - I’m very familiar with the fact that docker is extremely anal with UPPER-case input and syntax…

I dont spot anything obvious in your command, but it’s most likely a typo or something upper-case you just overlooked :slight_smile:

Happy hunting :stuck_out_tongue:

UPDATE: Looked another time more closely… you’re missing a “-e” before ADDRESS :mag_right:

4 Likes