Hi Akelad,
Thanks for your quick reply.
We’ve managed to make some progress, by conducting the following actions:
Backup our old RASA (r0.29) in /etc/rasa.old:
% cd ~
% sudo mv /etc/rasa /etc/rasa.old
Fresh Start (r0.34):
curl -sSL -o install.sh https://storage.googleapis.com/rasa-x-releases/0.34.0/install.sh
sudo bash ./install.sh
cd /etc/rasa
wget -qO docker-compose.yml https://storage.googleapis.com/rasa-x-releases/0.34.0/docker-compose.ce.yml
wget -qO rasa_x_commands.py https://storage.googleapis.com/rasa-x-releases/0.34.0/rasa_x_commands.py
Restore custom settings from our previous revision:
sudo cp -r /etc/rasa.old/actions ./
sudo cp /etc/rasa.old/Dockerfile ./
sudo cp /etc/rasa.old/docker-compose* ./
sudo cp /etc/rasa.old/credentials.yml ./
Build and Push docker images:
sudo docker build . -t newt/rasabot_app:newt_actions
sudo docker push newt/rasabot_app:newt_actions
Launch:
sudo docker-compose up -d
Now, we manage to see Rasa-X login page, but we cannot figure out what credentials shall be applied (password).
We tried to apply the rasa_x_commands.py script, but face same issue as reported here --> Error when I try to resolve set admin password for rasa x
We tried either of the below commands:
% sudo python rasa_x_commands.py create --update admin me q1w2e3r4
% docker-compose exec rasa-x bash -c 'python3 /app/scripts/manage_users.py create --update admin me q1w2e3r4'
Both have ended up with:
ERROR: Couldn't connect to Docker daemon at http+docker://localhost - is it running?
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.
Can you please guide us on that?
Thanks ahead,
Newt Team