Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update image references, Update readme #16

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down