From 9c3d56aaa0a0198baca5a3c943d6160b52fb5f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicklas=20K=C3=B6rtge?= Date: Thu, 19 Sep 2024 16:10:41 +0200 Subject: [PATCH] update image ref, update readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nicklas Körtge --- README.md | 4 ++++ chart/values.yaml | 4 ++-- docker-compose.yaml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 16bb7c56f..264f5a50a 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,10 @@ git clone https://github.com/IBM/cbomkit # run the make command to start the docker compose make production ``` + +> [!NOTE] +> By default, the service can be accessed at http://localhost:8001 + Deploy using the helm chart to a kubernetes environment. ```shell # clone the repository diff --git a/chart/values.yaml b/chart/values.yaml index fa7d06a04..d7fd881c0 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -2,11 +2,11 @@ common: clusterDomain: "" backend: name: cbomkit - image: cbomkit + image: ghcr.io/ibm/cbomkit tag: 1.0.0 frontend: name: cbomkit-frontend - image: cbomkit + image: ghcr.io/ibm/cbomkit-frontend tag: 1.0.0 regulator: enabled: false diff --git a/docker-compose.yaml b/docker-compose.yaml index 1b21cd4d1..1c5569c3b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -16,7 +16,7 @@ # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. services: backend: - image: cbomkit:${CBOMKIT_VERSION} + image: ghcr.io/ibm/cbomkit:${CBOMKIT_VERSION} environment: CBOMKIT_DB_TYPE: postgresql CBOMKIT_DB_JDBC_URL: jdbc:postgresql://db:5432/postgres @@ -40,7 +40,7 @@ services: - ext-compliance - dev-frontend frontend: - image: cbomkit-frontend:${CBOMKIT_VERSION} + image: ghcr.io/ibm/cbomkit-frontend:${CBOMKIT_VERSION} environment: VUE_APP_HTTP_API_BASE: "http://localhost:8081" VUE_APP_WS_API_BASE: "ws://localhost:8081"