Hi I’m composing a docker-compose file for the following purpose…
- Dockerize Rasa server as a standalone container.
- Expose necessary ports with default NLP pipeline configurations.
Here is my docker-compose file:
version: '3.0'
services:
rasa:
container_name: rasa_server
image: rasa/rasa:latest-full
ports:
- "5005:5005"
volumes:
- "./:/app"
- "./models:/app/models"
- "./:/app/config"
- "./data:/app/data"
command:
- run
So the docker-compose up cmd, constructs a rasa server using the already pre trained model present in the models directory. when there’s no model present, the cmd fails to start the rasa server.
So i need a cmd to train the rasa engine using the data provided in the directories… Can anyone help me out?