From ceffde5ad946b0d8a6e542dc3dbfd532ec3fdd64 Mon Sep 17 00:00:00 2001 From: "Hazim O. Arafa" Date: Sun, 2 Feb 2025 10:19:38 -0800 Subject: [PATCH 1/3] docs: fix docker command --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b69e7fa..9059682 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,8 @@ This project is designed to work seamlessly with LittleHorse's workflow engine, The fastest way to get started is using our standalone image that includes all necessary components: ```bash -docker run --name lh-user-tasks-bridge-standalone --rm -d \ - -p 2023:2023 \ - -p 8080:8080 \ - -p 8888:8888 \ - -p 8089:8089 \ - -p 3000:3000 \ - ghcr.io/littlehorse-enterprises/lh-user-tasks-bridge/lh-user-tasks-bridge-standalone:latest +docker run --name lh-user-tasks-bridge-standalone --rm -d --net=host \ + ghcr.io/littlehorse-enterprises/lh-user-tasks-bridge-backend/lh-user-tasks-bridge-standalone:latest ``` This will start: From d8a0174a4c69c5eba26d170f8acb28b1552aaf61 Mon Sep 17 00:00:00 2001 From: "Hazim O. Arafa" Date: Sun, 2 Feb 2025 12:23:57 -0800 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9059682..a9735a5 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ This project is designed to work seamlessly with LittleHorse's workflow engine, The fastest way to get started is using our standalone image that includes all necessary components: ```bash -docker run --name lh-user-tasks-bridge-standalone --rm -d --net=host \ +docker run --name lh-user-tasks-bridge-standalone —pull always --rm -d --net=host \ ghcr.io/littlehorse-enterprises/lh-user-tasks-bridge-backend/lh-user-tasks-bridge-standalone:latest ``` From aff16c41c8a3772ab84cbca561fd2041dd0d59f1 Mon Sep 17 00:00:00 2001 From: "Hazim O. Arafa" Date: Sun, 2 Feb 2025 12:25:04 -0800 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9735a5..2cce1fe 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ This project is designed to work seamlessly with LittleHorse's workflow engine, The fastest way to get started is using our standalone image that includes all necessary components: ```bash -docker run --name lh-user-tasks-bridge-standalone —pull always --rm -d --net=host \ +docker run --name lh-user-tasks-bridge-standalone --pull always --rm -d --net=host \ ghcr.io/littlehorse-enterprises/lh-user-tasks-bridge-backend/lh-user-tasks-bridge-standalone:latest ```