We are using docker-compose for rasa-x deployment, we have provided the docker image for action in docker-compose.override.yml as per the document and everything works fine.
Now I want to hit my action server from the outside rasa-x instance, but I am not sure what’s the URL for the same.
I am doing this already for rasa-production using {{rasa-x-url}}/core/webhooks/rest/webhook?token={{rasa-x-token}} and need the same for action server.
If it’s possible what’s the URL, if not can I instead host the action server elsewhere and provide the URL for it in the rasa-x instance?
… so this exposes the port, but only for the internal docker network. If you want to access the app container outside, then you have to also add ports mapping, see docker docs here.
Then you’ll be able to access the action server at {HOST}:5055 using this POST method.