Closed andrewlu0 closed 3 years ago
does your credentials.yml have this?
socketio: user_message_evt: user_uttered bot_message_evt: bot_uttered session_persistence: true
Yes, I included that in my credentials. I found a work around where I start the React app on a separate VM and change
socketUrl={"http://<IP address of backend VM>:5005"}
And that works fine. Just not sure why the containers on the same machine are not connecting
I start my rasa docker container with following command , for example this has to be there --cors "*"
docker run --name=laake --user 1003 -v $(pwd):/app -p "5010:5005" rasa/rasa:1.10.11-full run -m models --enable-api --cors "*" --debug
It allows webservices talk to each other https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
Hi, I am having an issue when separating my React app and Rasa server into two different Docker containers and building with docker compose. Here is my docker-compose.yml:
And here is my custom widget:
I can make pings to the rasa_server container from inside the assistant_ui container but when I open the web page, the chat box is not displayed.