I’m running Rasa X locally using the docker image from docker hub, here is the docker-compose.yml
file that I’m using,
version: '3.0'
services:
rasa:
image: rasa/rasa-x:0.31.5
env_file:
- ./.env
ports:
- 5002:5002
volumes:
- ./:/app
command:
["rasa", "x", "-vv"]
action_server:
image: <custom-action-image>
expose:
- 5055
Everything is working fine, however on training the model in Rasa X, they don’t appear under the “models” directory. But they appear in the UI even after a restart.
Here is the directory structure that I’m using: