From 2f50470480f9d22ddd5f620feda82d4dcdbfe2a6 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sun, 25 Feb 2024 13:38:48 +0100 Subject: [PATCH] Update Docker commands in README The Docker commands in README.md have been updated to pull the latest version of elsa-server-and-studio container instead of elsa-v3. Additionally, a new environment variable `HTTP__BASEURL` was added to the `docker run` command for configuration purposes. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03fd68d71..1b339ced3 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ Elsa is a powerful workflow library that enables workflow execution within any . To give the Elsa Studio + Elsa Server a quick spin, you can run the following command to start the Elsa Docker container: ```shell -docker pull elsaworkflows/elsa-v3:latest -docker run -t -i -e ASPNETCORE_ENVIRONMENT='Development' -e HTTP_PORTS=8080 -p 13000:8080 elsaworkflows/elsa-v3:latest +docker pull elsaworkflows/elsa-server-and-studio-v3:latest +docker run -t -i -e ASPNETCORE_ENVIRONMENT='Development' -e HTTP_PORTS=8080 -e HTTP__BASEURL=http://localhost:13000 -p 13000:8080 elsaworkflows/elsa-server-and-studio-v3:latest ``` > This Docker image is based on a reference ASP.NET application that hosts both the workflow server and designer and is not intended for production use.