NLU.md is not updated while changing in Rasa X

I realize that the NLU.md file is not synced along while changes being made in nlu, synonym in Rasa X. The domain file however seems fine (synced).

Help would be highly appreciated!

Best regards By the way I’m using Rasa X 0.26.3

Hi @vova999 would you mind giving a bit more concrete of an example of where you saw this happen? Also, how do you have rasa X installed?

Hi @erohmensing

I have rasa x run in docker, here is my setup: From ubuntu:18.04

ENV PYTHONIOENCODING utf8 
ENV GIT_PYTHON_REFRESH quiet
ENV RASA_X_PASSWORD secretrasapass

WORKDIR /rasa

RUN apt-get update && \
    apt-get install -y python3 build-essential python3-pip git 
RUN pip3 install -U pip
RUN pip install rasa[convert]
RUN pip install tensorflow==2.1
RUN rasa init --no-prompt
Copy . .
RUN pip install rasa-x-0.26.3.tar.gz
RUN rasa train
CMD ["rasa", "x", "--enable-api", "--no-prompt"] 

Many thanks

Looks like you copied the code instead of mounting it, which means that the code will change inside the docker container but won’t change anything on the host machine, no?