How do I run a linux-docker-image on a solaris machine?
Similar to running linux-docker-image on windows machines.
2
I’m not sure about your question but maybe the --platform might help you
--platform
You can use it in the docker run command if your host is multi-platform capable https://docs.docker.com/engine/reference/commandline/run/
docker run
--platform Set platform if server is multi-platform capable
e.g.
docker run -d nginx --platform arm64 ...
Hope this helps!
There is currently no support for Docker on Solaris.
Docker containers rely on their hosts kernel, that’s why Docker only works on linux systems or if the operating system provides a linux kernel. (WSL makes Docker work on Windows)
Click here to cancel reply.
2
Answers
I’m not sure about your question but maybe the
--platform
might help youYou can use it in the
docker run
command if your host is multi-platform capable https://docs.docker.com/engine/reference/commandline/run/e.g.
Hope this helps!
There is currently no support for Docker on Solaris.
Docker containers rely on their hosts kernel, that’s why Docker only works on linux systems or if the operating system provides a linux kernel. (WSL makes Docker work on Windows)