monai-deploy icon indicating copy to clipboard operation
monai-deploy copied to clipboard

MD Express error when starting from within a docker

Open AHarouni opened this issue 2 years ago • 5 comments

I can start and run MD Express from a local host. However I get an error from docker compose not finding files when I try to run MD express through a docker in docker after exposing the socket -v /var/run/docker.sock:/var/run/docker.sock

it seems like MD express launches dockers of its own as I get error trying to look for config files that are there on host but are mounted in different directory in the docker

Work around: I map the host dir to exactly the same as is into the docker as -v /home/harouni/demos/MDExpress:/home/harouni/demos/MDExpress

Proposed solution we can add a variable in the .env file as HOST_PATH which would be defaulted to $PWD but I can then change to read from an environment variable as -e HOST_PATH=/home/harouni/demos/MDExpress That way you can launch the sub dockers using this variable HOST_PATH

AHarouni avatar Oct 26 '22 20:10 AHarouni

@AHarouni - out of curiosity are you using the dind container or something else?

JHancox avatar Oct 31 '22 15:10 JHancox

@JHancox I am not using dind container. instead this is any container with jupyterlab as nvidia pytorch base. I then expose the docker socket and apt install docker cli That way I can run docker commands from the jupyter notebook. This issue is these docker commands fails if they relay on PWD since the directory is virtual in the jupyter notebook container, while the docker engine search for this path on the host and doesn't find it

AHarouni avatar Oct 31 '22 20:10 AHarouni

This actually seems to stem from a lingering Docker/Compose bug: github.com/docker/for-linux/issues/675. I tried a couple of internal workarounds but no luck. Once the underlying issue is fixed, it should actually work fine in MDE.

JHancox avatar Nov 04 '22 18:11 JHancox

The link doesn't work anymore.

AHarouni avatar Nov 09 '22 22:11 AHarouni

The link doesn't work anymore.

For some reason, I can't get the link to both display correctly and work, but it seems to, at least, work for now. I also updated the readme to make people aware of this problem and suggest your workaround.

JHancox avatar Nov 10 '22 08:11 JHancox