Production-ready, security-hardened container images with automated weekly rebuilds.
This repository provides continuously updated container images that are:
- Security-first: Weekly automated rebuilds ensure the latest security patches
- Production-ready: Targeting Docker Hub Scout "A" rating with minimal CVEs
- Supply-chain secured: Every image includes SLSA provenance, SBOMs, and Cosign signatures
- Multi-architecture: Built for
linux/amd64andlinux/arm64
All images are published to Docker Hub: guidedtraffic on Docker Hub
| Image | Description | Docker Hub |
|---|---|---|
etcd-client |
Ubuntu minimal with etcd client tools | guidedtraffic/etcd-client |
network-debug |
Network debugging toolkit | guidedtraffic/network-debug |
thanos |
Thanos monitoring on Debian slim | guidedtraffic/thanos |
# Pull an image
docker pull guidedtraffic/etcd-client:latest
# Verify signature (requires cosign)
cosign verify guidedtraffic/etcd-client:latest
# View SBOM
docker sbom guidedtraffic/etcd-client:latest- Automated scanning: Trivy vulnerability scans on every build
- Weekly rebuilds: Every Sunday at 20:00 UTC to apply latest patches
- Supply chain attestation: SLSA provenance, SBOMs (SPDX, CycloneDX), Cosign signatures
- Transparency: Security scan results available in the Security tab
Want to add a new image? Simply:
- Copy an existing image directory (e.g.,
cp -r etcd-client/ my-image/) - Edit
image.ymlwith your metadata - Modify
Containerfilefor your use case - Commit and push - the CI/CD pipeline auto-discovers and builds it
See .github/copilot-instructions.md for detailed development guide.
Images are automatically built and published on:
- Every commit affecting
Containerfileorimage.yml - Weekly schedule (Sunday 20:00 UTC)
- Manual workflow dispatch
See LICENSE for details.