Launch custom flask service inside quantrocket AWS docker-machine

Hi, I was able to spin up an AWS docker Jupyterlab following the guide. Now I would love to spin up a FLASK service. I saw that I could do something like that: curl -X GET 'http://houston/proxy/http/secretsauce/80/secretstrategy/signals' to access a custom service,
but looks like this method is just for accessing a local docker deploy.

That would work from inside Jupyter. From outside, you'd have to replace http://houston with https://yourdomain.com and pass your Basic Auth credentials.

Hi Brain, does the custom service have to use port 80? or can that be other ports?? I started Flask service like this: FLASK_APP=hello.py flask run

I tried this https://yourdomain.com/proxy/http/127.0.0.1/5000 but didn't work.