Version: Latest
Using Docker
The Rasa Pro Docker image is named:
rasa-plus
for versions <=3.7.xrasa-pro
for versions >=3.8.x
The Docker images are hosted on our GCP Artifact Registry. To pull the image, you can run the following:
- Rasa Pro <=3.7.x
- Rasa Pro >=3.8.x
note
In this command, replace RASAVERSION
with your desired version of Rasa Pro. To find
the latest version of Rasa Pro, see the Changelog.
docker pull europe-west3-docker.pkg.dev/rasa-releases/rasa-pro/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:
- Rasa Pro <=3.7.x
- Rasa Pro >=3.8.x
note
In this command, replace RASAVERSION
with your desired version of Rasa Pro. To find
the latest version of Rasa Pro, see the Changelog.
# execute `rasa init` via docker
docker run -v ./:/app \
-e RASA_PRO_LICENSE=${RASA_PRO_LICENSE} \
europe-west3-docker.pkg.dev/rasa-releases/rasa-pro/rasa-pro:RASAVERSION \
init --no-prompt