Good morning, I want to install the RASA-Pro version on my server at home because I want to create my own chatbot to understand how the models work. Docker on my Ubuntu 24.04 server is already installed and running.
I created following the instructions the file docker-compose.yml
version: "3.4"
services:
rasa-x:
container_name: rasa_x
image: rasa/rasa-x:latest
ports:
- "5002:5002"
environment:
RASA_X_PASSWORD: "<password>"
volumes:
- ./models:/app/models
- ./config:/app/config
depends_on:
- rasa
- db
rasa:
container_name: rasa
image: rasa/rasa-pro:3.10.19
ports:
- "5005:5005"
volumes:
- ./models:/app/models
command:
- run
- --enable-api
- --cors "*"
environment:
RASA_PRO_LICENSE: "<licence>"
depends_on:
- db
action_server:
container_name: rasa_action
image: rasa/rasa-sdk:latest
volumes:
- ./actions:/app/actions
ports:
- "5055:5055"
db:
image: postgres:latest
environment:
POSTGRES_USER: rasa
POSTGRES_PASSWORD: <password>
POSTGRES_DB: rasa_db
ports:
- "5432:5432"
volumes:
- ./postgres_data:/var/lib/postgresql/data
The rasa_action and rasa_db containers start correctly while the rasa container does not start and returns me this error: rasa run: error: argument {actions}: invalid choice: ‘–cors “*”’ (choose from ‘actions’)
Can anyone help me ?