could not able to train models inside docker compose platform.
other options are load model from files can’t be done ,because the linux server has no GUI
server :ubuntu
log files for sudo docker-compose logs rasa-x
can anyone know the issue ?
could not able to train models inside docker compose platform.
other options are load model from files can’t be done ,because the linux server has no GUI
server :ubuntu
log files for sudo docker-compose logs rasa-x
can anyone know the issue ?
given root permission for rasa x and the issue is solved .changes are listed below.
services:
rasa-x:
restart: always
image: "rasa/rasa-x:${RASA_X_VERSION}"
user: root
expose:
- "5002"
volumes:
- ./models:/app/models
- ./environments.yml:/app/environments.yml
- ./credentials.yml:/app/credentials.yml
- ./endpoints.yml:/app/endpoints.yml
- ./logs:/logs
- ./auth:/app/aut