I've set up a jupyter server based on the tmpnb Docker file. When starting the server i supply ochestrate.py with my own notebook docker image.
docker run --net=host -d -e CONFIGPROXY_AUTH_TOKEN=$TOKEN \
--name=tmpnb \
-v /var/run/docker.sock:/docker.sock jupyter/tmpnb python orchestrate.py \
--image=dietmarw/notebook
but it seems that the CMD inside my image dietmarw/notebook is not exectuted. Everything else works as expected except that last CMD. Is there some option one has to pass to `ochestrate.py` in order to change that?
The complete run.sh script and my Dockerfile can be found under:
https://github.com/dietmarw/docker-notebook