{"id":41586163,"url":"https://github.com/wiremind/container-images","last_synced_at":"2026-01-24T09:06:21.637Z","repository":{"id":327931925,"uuid":"1112458031","full_name":"wiremind/container-images","owner":"wiremind","description":"Open-Source image wiremind flavor","archived":false,"fork":false,"pushed_at":"2026-01-14T13:08:28.000Z","size":41,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T15:44:10.959Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wiremind.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-08T16:46:50.000Z","updated_at":"2026-01-14T13:08:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wiremind/container-images","commit_stats":null,"previous_names":["wiremind/images","wiremind/container-images"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wiremind/container-images","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fcontainer-images","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fcontainer-images/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fcontainer-images/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fcontainer-images/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiremind","download_url":"https://codeload.github.com/wiremind/container-images/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fcontainer-images/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28722042,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-24T09:06:21.566Z","updated_at":"2026-01-24T09:06:21.631Z","avatar_url":"https://github.com/wiremind.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wiremind Container Images\n\nCustom container images built and maintained by Wiremind, published to GitHub Container Registry.\n\n## Available Images\n\n| Image | Description | Registry |\n| ----- | ----------- | -------- |\n| **haproxy** | HAProxy with lua-json for haproxy-ingress auth support | `ghcr.io/wiremind/haproxy` |\n| **nginx-vts-exporter** | Nginx with VTS (Virtual host Traffic Status) module | `ghcr.io/wiremind/nginx-vts-exporter` |\n| **kubectl** | Kubectl CLI | `ghcr.io/wiremind/kubectl` |\n| **buildx** | Docker Buildx CLI | `ghcr.io/wiremind/buildx` |\n| **gentoo-stage3** | Gentoo stage3 base image | `ghcr.io/wiremind/gentoo-stage3` |\n\n## Usage\n\n```bash\n# Pull an image\ndocker pull ghcr.io/wiremind/haproxy:3.3.1-debian13\n\n# Use in Dockerfile\nFROM ghcr.io/wiremind/haproxy:3.3.1-debian13\n```\n\n## Project Structure\n\n```text\n├── images/\n│   └── \u003cimage-name\u003e/\n│       ├── docker-bake.hcl       # Bake config (versions, tags, targets)\n│       └── Containerfile*        # One or more Containerfiles\n├── .github/workflows/\n│   ├── bake.yml                  # Build, push, sign with Cosign\n│   ├── test.yml                  # PR: Hadolint linting\n│   └── security.yml              # Trivy \u0026 Kubescape scans\n└── renovate.json                 # Automated dependency updates\n```\n\n## Adding a New Image\n\n1. Create directory: `mkdir -p images/my-image`\n\n2. Create `docker-bake.hcl`:\n\n   ```hcl\n   variable \"REGISTRY\" {\n     default = \"ghcr.io/wiremind\"\n   }\n\n   variable \"VERSIONS\" {\n     default = [\"1.0.0\", \"1.1.0\"]\n   }\n\n   group \"default\" {\n     targets = [\"my-image\"]\n   }\n\n   target \"my-image\" {\n     name       = \"my-image-${replace(v, \".\", \"-\")}\"\n     matrix     = { v = VERSIONS }\n     context    = \".\"\n     dockerfile = \"Containerfile\"\n     tags       = [\"${REGISTRY}/my-image:${v}\"]\n     args       = { UPSTREAM_TAG = v }\n     platforms  = [\"linux/amd64\"]\n   }\n   ```\n\n3. Create `Containerfile`:\n\n   ```dockerfile\n   # syntax=docker.io/docker/dockerfile-upstream:1.20.0\n   ARG UPSTREAM_TAG=1.0.0\n   FROM docker.io/library/base:${UPSTREAM_TAG}\n   # Your customizations\n   ```\n\n4. Push to `main` - CI will automatically build and push all versions.\n\n## Local Development\n\n```bash\n# Preview what will be built\ndocker buildx bake -f images/haproxy/docker-bake.hcl --print\n\n# Build locally (no push)\ndocker buildx bake -f images/haproxy/docker-bake.hcl\n\n# Build and push\ndocker buildx bake -f images/haproxy/docker-bake.hcl --push\n\n# Lint Containerfiles\nhadolint images/my-image/Containerfile\n```\n\n## CI/CD Workflows\n\n| Workflow | Trigger | Actions |\n| -------- | ------- | ------- |\n| **bake.yml** | Push to main | Build changed images, push to GHCR, sign with Cosign |\n| **test.yml** | Pull Request | Hadolint linting on changed Containerfiles |\n| **security.yml** | After build + weekly | Trivy \u0026 Kubescape vulnerability scans |\n\n## Security\n\nAll images are:\n\n- **Signed** with [Cosign](https://github.com/sigstore/cosign) using keyless signing\n- **Scanned** with [Trivy](https://github.com/aquasecurity/trivy) and [Kubescape](https://github.com/kubescape/kubescape)\n- **Reproducible** using `SOURCE_DATE_EPOCH` from git commit timestamps\n\nResults are available in the [Security tab](../../security/code-scanning).\n\n## Dependency Updates\n\n[Renovate](https://github.com/renovatebot/renovate) automatically creates PRs for version updates.\n\n## License\n\nSee [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremind%2Fcontainer-images","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiremind%2Fcontainer-images","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremind%2Fcontainer-images/lists"}