Hi all,
I want to run an application on MyBinder using a Dockerfile. However, my application starts with an additional web server. It seems that MyBinder only exposes the port in which the jupyter server is running. Is there a way to expose additional ports? For instance, in plain docker, I can use this command:
docker run -p 8081:8081 -p 8031:8031
.
Is there something similar on MyBinder?
Thanks a lot