Hi all,
First time posting here so sorry if this is a little misguided, but I am making my way through the Rasa masterclass handbook and I am on the Rasa X section. I have been running into some errors which I suspect may be because I am running 0.35.1 where the handbook was written for 0.26.0. Any help would be appreciated
I have created my docker-compose.override.yml
file in my /etc/rasa directory with the following contents:
version: '3.4' services: app: image: 'rasa/rasa-sdk:latest' volumes: - './actions:/app/actions' expose: - '5055' depends_on: - rasa-production
After I save the file and run sudo docker-compose up -d
from the command line I get the following error:
ERROR: In file ‘./docker-compose.override.yml’, service ‘depends_on’ must be a mapping not an array.
I tried running the code through a yml linter but then I just get a slightly different yet similar error.
What is causing this? Is there a way to do this straight through the Rasa X UI in the new version?