Open-Source

Installation & Running the Project

Make sure you have Docker installed on your machine.

Option 1: Using Docker Pull

1. Cloning The Identity-Repo

First, clone the repository to your local machine:

git clone https://github.com/walt-id/waltid-identity.git && cd waltid-identity

2. Pulling the Docker Image

To quickly get started, you can pull the pre-built Docker image from Docker Hub:

docker pull waltid/verifier-api

2. Running the Docker Image

Once the image is pulled, you can run it using the following command:

docker run -p 7003:7003 \
  -itv $(pwd)/waltid-services/waltid-verifier-api/config:/waltid-verifier-api/config \
  -t waltid/verifier-api

Option 2: Building the Image Yourself

1. Cloning The Identity-Repo

First, clone the repository to your local machine:

git clone https://github.com/walt-id/waltid-identity.git && cd waltid-identity

2. Building the Docker Image If you prefer to build the Docker image yourself, use the following command:

docker build -t waltid/verifier-api -f waltid-services/waltid-verifier-api/Dockerfile .

3. Running the Docker Image After building the image, run it using:

docker run -p 7003:7003 \
  -itv $(pwd)/waltid-services/waltid-verifier-api/config:/waltid-verifier-api/config \
  -t waltid/verifier-api

Start Verifying Credentials

Now that the verifier api is running, you can start verifying credentials.