docker: Error response from daemon: Container command not found or does not exist…
I guess that I created an image “hellodocker”, now I start a container by the command.
The command is docker -H tcp://my_ip_address:2375 run -t -d -p 5006:5006 -e "server.urls=http://*.5006" hellodocker
Then it returned to me
b02054aef2369c7419f3518bc64bd13b35f9e3bd85af3577efd3afe2c435ff72
docker: Error response from daemon: Container command not found or does not exist…
It seems that you have not set ENTRYPOINTorCMD in the Dockerfile, and did not specify the command on the CLI (the last argument you pass is the image name).
By the way, -t and -d are rarely used together (usually don’t need to simulate a TTY when detached), so unless you’re certain you need -t, probably just -d is sufficient.