zappi/celery-exporter
Docker image for danihodovic/celery-exporter
, a Prometheus exporter for Celery metrics.
The current Docker image doesn't support ARM and we needed one that does. And the review to add support took longer than we could wait.
docker run --name celery-exporter zappi/celery-exporter:latest
For more detailed usage documentation see upstream.
Below are detailed instructions to guide contributors through the process to update the image to use a new version:
.github/workflows/test.yml
file in your editor and locate the following section:
env: VERSION: 0.x.0
VERSION
field to the desired version:
env: VERSION: 0.y.0
To cut a new release, follow these steps:
main
branch is up to date:
git checkout maingit fetch origin main
git tag -s <x.y.z> -m "Version <x.y.z>"
git push origin <x.y.z>
docker pull zappi/celery-exporter