v2.0.1
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
- hotfix: platform agent setup nats issue by @bhavanakarwade in #1137
- hotfix/push-docker-image by @KambleSahil3 in #1156
Full Changelog: v2.0.0...v2.0.1