Skip to content

v2.0.1

Choose a tag to compare

@KambleSahil3 KambleSahil3 released this 28 Mar 13:56
· 346 commits to main since this release
fc2f098

What's New?

Automated Docker Image Build & Push

Added a GitHub Actions workflow to build and push Docker images for all services.
Docker images are now pushed to GitHub Container Registry (GHCR) for seamless deployment.

Updated docker-compose.yml

Now pulls images from GHCR instead of building locally.
Ensures all services use pre-built images for consistency.

To start services using images from GitHub Container Registry, run:
docker-compose up -d

New docker-compose-dev.yml (Optional for Developers)

Allows developers to build images locally if needed.

Use the following command to start services with locally built images:
docker-compose -f docker-compose-dev.yml up -d

GitHub Container Registry (GHCR) - Service Images

If you want to manually pull any specific service image, visit the package registry:
GitHub Packages - GHCR

To pull an individual service image manually, use:

docker pull ghcr.io/credebl/credo-controller:latest

What's Changed

Full Changelog: v2.0.0...v2.0.1