I am planning to run a web app. The requirement is to have process isolated containers. Is there a way to publish ports for --isolation=process?, so it is accessible outside of the docker host?
Simply running docker run -p 8000:8000 --isolation process does not expose it to the outside world
I am planning to run a web app. The requirement is to have process isolated containers. Is there a way to publish ports for
--isolation=process?, so it is accessible outside of the docker host?Simply running
docker run -p 8000:8000 --isolation processdoes not expose it to the outside world