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

feat: update vckit docker compose #246

Draft
wants to merge 1 commit into
base: next
Choose a base branch
from
Draft
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
146 changes: 17 additions & 129 deletions app-config.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker-compose.e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- NODE_ENV=development

vckit-api:
image: ghcr.io/uncefact/project-vckit:sha-8a1a7ea@sha256:21414e4cdfd6b045f57667408256d4951c1d14d0648151ededf3107716b67b5f
image: ghcr.io/uncefact/project-vckit:sha-325b7e3@sha256:3623cd45cdb971ba16c6016a1e3ba153fe6920c2053275cd430e76ab75d5a563
env_file:
- local.env
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
- NODE_ENV=development

vckit-api:
image: ghcr.io/uncefact/project-vckit:sha-8a1a7ea@sha256:21414e4cdfd6b045f57667408256d4951c1d14d0648151ededf3107716b67b5f
image: ghcr.io/uncefact/project-vckit:sha-325b7e3@sha256:3623cd45cdb971ba16c6016a1e3ba153fe6920c2053275cd430e76ab75d5a563
env_file:
- local.env
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,27 @@ Regardless of which setup option you chose, you'll need to create an identifier

To create an identifier, you'll need to use the VCKit API. Refer to the [VCKit documentation](https://uncefact.github.io/project-vckit/docs/get-started/api-server-get-started/basic-operations) for specific instructions on how to create a did:web identifier using their API endpoints.

In the next section, we will discuss the Storage Service and its role in the UNTP ecosystem.
In the next section, we will discuss the Storage Service and its role in the UNTP ecosystem.

### Important Notice

When updating to a new Docker image in Docker Compose, ensure that you remove the volumes associated with the database server. This step is necessary to maintain data consistency and avoid potential conflicts during the update process.

#### Steps to Remove Volumes and Update Docker Image
1. Stop the Running Containers

```sh
docker compose down
```

2. Remove the vckit-data volume:

```sh
docker volume rm tests-untp_vckit-data
```

3. Restart the containers:

```sh
docker compose up -d
```
148 changes: 18 additions & 130 deletions e2e/cypress/fixtures/app-config.json

Large diffs are not rendered by default.

146 changes: 17 additions & 129 deletions packages/components/src/constants/app-config.json

Large diffs are not rendered by default.

146 changes: 17 additions & 129 deletions packages/mock-app/src/constants/app-config.json

Large diffs are not rendered by default.

Loading