How to connect to a dockerized RASA server

I installed RASA with docker, so I tried RASA with “docker run -it -v $(pwd):/app rasa/rasa shell” and all work correctly. I launch the RASA server with “docker run -v $(pwd)/models:/app/models rasa/rasa run” and the window terminal say “2019-09-08 21:17:50 INFO root - Starting Rasa server on http://localhost:5005”, in another terminal window I try to have a response with “curl -XGET http://172.17.0.2:5005/webhooks/rest”, where 172.17.0.2 is the internal IP, but the terminal window is blocked and doesn’t respond “{“status”:“ok”}”. What I can try to connect to dockerized server? I work with a Mac

can you try adding -p 5005:5005 to your command to map the container port to your host port?

1 Like

Thanks! :slightly_smiling_face: