I am unable to run the docker container on mac m1
Please note i was not able to run the below docker container
Reference
https://hub.docker.com/r/cloudera/sandbox-cdh
my system configuration
ram 16 gb sdd - 250 gb and free space is 150 gb
command used --> cloudera/sandbox-cdh --> not working
docker run -m 10G --hostname=sandbox-cdh.cloudera --privileged=true -t -i -v /Users/appleworld/Documents/Docker:/Src --publish-all=true -p 8888 -p 7180:7180 cloudera/sandbox-cdh /usr/bin/sandbox-cdh.cloudera --platform amd64
Error
Unable to find image 'cloudera/sandbox-cdh:latest' locally
docker: Error response from daemon: manifest for cloudera/sandbox-cdh:latest not found: manifest unknown: manifest unknown.
See 'docker run --help'.
is there an issue with the command ?
That's because image have no
latest
tag.Use with correct tag
cloudera/sandbox-cdh:6.3.0
.