Hi @ntntnlstdnt
Thanks for sharing the error message! It looks like the issue is caused because the directory you mounted (~/Documents/rasa-demo2) is read-only inside the Docker container. Rasa is trying to create a folder called actions inside that directory, but it doesn’t have permission to do so, that’s why you’re seeing:
PermissionError: [Errno 13] Permission denied: 'actions'
Try changing permissions for this directory by running this command
chmod -R a+w ~/Documents/rasa-demo2
Please let me know if this helped to resolve the issue.