Using Docker
The Rasa Pro Docker image is available on Docker Hub as rasa/rasa-pro
.
note
In the commands below, replace RASAVERSION
with your desired version of Rasa Pro. To find
the latest version of Rasa Pro, see the Changelog.
To pull the image, run:
docker pull rasa/rasa-pro:RASAVERSION
Licensing
As explained in Licensing, at runtime you must provide the license key in the
environment variable RASA_PRO_LICENSE
.
After you defined the environment variable on your system, you can pass it into the docker container
via the -e
parameter, for example:
# execute `rasa init` via docker
docker run -v ./:/app \
-e RASA_PRO_LICENSE=${RASA_PRO_LICENSE} \
rasa/rasa-pro:RASAVERSION \
init --no-prompt