Issues with RASA core docker setup

Have downloaded the image from RASA docker repo docker pull rasa/rasa:1.10.13-full and following the docker setup instructions Building Rasa with Docker to setup RASA core.

Step [2.2 Training the Rasa Core Model] docker run command is throwing the below exception.

GBTC02VM0TLG8WL:rasa ngajje$ docker run -v $(pwd):/app/project -v $(pwd)/models/rasa_core:/app/models rasa/rasa:1.10.13-full train -d domain.yml -s stories.md --out models usage: rasa train [-h] [-v] [-vv] [–quiet] [–data DATA [DATA …]] [-c CONFIG] [-d DOMAIN] [–out OUT] [–augmentation AUGMENTATION] [–debug-plots] [–fixed-model-name FIXED_MODEL_NAME] [–persist-nlu-data] [–force] {core,nlu} … rasa train: error: invalid choice: ‘stories.md’ (choose from ‘core’, ‘nlu’)

Can anyone please advise.

I faced similar issue when I was using rasa/rasa:latest-full image but then I changed the version to rasa/rasa:1.10.12-full and the issue got resolved. You can also try the same.

Still I am getting the same error with rasa/rasa:1.10.12-full images, looks like command docker run -v $(pwd):/app/project -v $(pwd)/models/rasa_core:/app/models rasa/rasa:1.10.12-full train --domain project/domain.yml --stories project/data/stories.md --out models in the documentation Building Rasa with Docker is not correct.

Could you please share the commands used to create chatbot and NLU project.