{"id":47974331,"url":"https://github.com/zewelor/docker-images","last_synced_at":"2026-04-04T10:52:47.101Z","repository":{"id":39861391,"uuid":"439842548","full_name":"zewelor/docker-images","owner":"zewelor","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-24T17:14:39.000Z","size":107,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-04T10:52:39.532Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zewelor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-12-19T11:13:34.000Z","updated_at":"2026-03-24T17:14:45.000Z","dependencies_parsed_at":"2024-08-01T17:29:39.948Z","dependency_job_id":"c2ea7333-42e2-40d9-87a4-27cb44e22f37","html_url":"https://github.com/zewelor/docker-images","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zewelor/docker-images","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zewelor%2Fdocker-images","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zewelor%2Fdocker-images/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zewelor%2Fdocker-images/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zewelor%2Fdocker-images/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zewelor","download_url":"https://codeload.github.com/zewelor/docker-images/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zewelor%2Fdocker-images/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31397055,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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-04-04T10:52:47.030Z","updated_at":"2026-04-04T10:52:47.089Z","avatar_url":"https://github.com/zewelor.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monorepo with multiarch docker images\n[![Build and push](https://github.com/zewelor/docker-images/actions/workflows/image.yml/badge.svg)](https://github.com/zewelor/docker-images/actions/workflows/image.yml)\n\nThis repo intentionally optimizes for simplicity.\n\n- Package versions are not pinned on purpose.\n- Base images and GitHub Actions are not pinned on purpose.\n- Alpine-based images track the previous stable Alpine release, not the latest stable release.\n- Ruby images track the latest stable Ruby release.\n- Images default to root unless a specific image already has a stronger opinion, such as the distroless Ruby variant.\n- Alpine runtime images aim to avoid shipping `apk`; `sqlite3`, `tftp`, and `rsync` follow that pattern.\n- `tftp` intentionally runs as non-root in its runtime image, listening on `1069/udp` by default to avoid privileged ports inside the container.\n\nBecause the repo prefers freshness over reproducibility, local builds and CI always pull the latest matching base image tags before building.\n\n## CI behavior\n\nCI uses thin path-based workflows to decide what should run and reusable workflows to keep the actual build logic DRY.\n\n- `.github/workflows/image.yml` runs a full rebuild for all images on `workflow_dispatch`, weekly `schedule`, and changes under `.github/workflows/**`.\n- `.github/workflows/image-ruby.yml` runs only the Ruby build when `ruby/**` changes, while ignoring Markdown-only and `Justfile`-only changes.\n- `.github/workflows/image-rsync.yml`, `.github/workflows/image-sqlite3.yml`, and `.github/workflows/image-tftp.yml` run only the matching Alpine image when that image directory changes, while ignoring Markdown-only and `Justfile`-only changes.\n- `.github/workflows/reusable-alpine-version.yml` resolves the previous stable Alpine version once per workflow and exposes it as an output.\n- Alpine build workflows first call the reusable Alpine version workflow and then pass that output into the reusable Alpine image build workflow.\n- The Alpine lookup command is intentionally kept in one place in CI and mirrored in `common.just` for local builds.\n- `.github/workflows/reusable-alpine-image.yml` builds one Alpine image for a pre-resolved Alpine version.\n- `.github/workflows/reusable-ruby-image.yml` contains the shared Ruby build, tag, cache, and push logic.\n\nThis split exists because GitHub Actions `paths` filtering works at the workflow level, not per job. The small trigger workflows are intentional; they keep change detection simple without duplicating the heavy build steps.\n\n## Adding or changing images\n\n- New Alpine image: add the image directory, add the image name to the matrix in `.github/workflows/image.yml`, and create a thin trigger workflow similar to `.github/workflows/image-rsync.yml`.\n- New Ruby-like or otherwise special image: create a dedicated trigger workflow and either reuse an existing reusable workflow or add a new one if the build pattern is genuinely different.\n- Keep trigger workflows small: they should mainly define `on: ... paths:` and call a reusable workflow.\n- Preserve the doc ignores in path-based workflows so Markdown-only or `Justfile`-only edits do not rebuild images.\n- If a CI change affects `.github/workflows/**`, let the full rebuild exercise everything.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzewelor%2Fdocker-images","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzewelor%2Fdocker-images","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzewelor%2Fdocker-images/lists"}