{"id":15962419,"url":"https://github.com/crazy-max/lorrainejug-buildx-bake","last_synced_at":"2026-02-13T15:03:59.518Z","repository":{"id":148251340,"uuid":"428960116","full_name":"crazy-max/lorrainejug-buildx-bake","owner":"crazy-max","description":"Presentation of buildx bake @ Lorraine JUG","archived":false,"fork":false,"pushed_at":"2021-11-18T16:01:07.000Z","size":211,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-30T17:43:11.729Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://crazymax.dev/lorrainejug-buildx-bake/","language":"HCL","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/crazy-max.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"crazy-max","custom":"https://www.paypal.me/crazyws"}},"created_at":"2021-11-17T08:12:06.000Z","updated_at":"2021-11-19T06:16:47.000Z","dependencies_parsed_at":"2023-05-25T09:15:36.597Z","dependency_job_id":null,"html_url":"https://github.com/crazy-max/lorrainejug-buildx-bake","commit_stats":{"total_commits":11,"total_committers":1,"mean_commits":11.0,"dds":0.0,"last_synced_commit":"d966f4c31ecd2a596e889b004f74a14671888bb1"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/crazy-max/lorrainejug-buildx-bake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Florrainejug-buildx-bake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Florrainejug-buildx-bake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Florrainejug-buildx-bake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Florrainejug-buildx-bake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazy-max","download_url":"https://codeload.github.com/crazy-max/lorrainejug-buildx-bake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Florrainejug-buildx-bake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29411138,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2024-10-07T16:03:40.953Z","updated_at":"2026-02-13T15:03:59.464Z","avatar_url":"https://github.com/crazy-max.png","language":"HCL","funding_links":["https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":[],"sub_categories":[],"readme":"# `buildx bake adoption --push`\n\nPresentation of `buildx bake` @ [Lorraine JUG](https://lorrainejug.github.io/annonce/2021/11/18/docker-buildx.html)\n\n___\n\n* [Slides](#slides)\n  * [Render](#render)\n  * [Run and auto-reload](#run-and-auto-reload)\n  * [GitHub Actions with `bake` and GitHub Pages](#github-actions-with-bake-and-github-pages)\n* [Demo app](#demo-app)\n  * [Sources](#sources)\n  * [Build](#build)\n  * [GitHub Actions](#github-actions)\n* [License](#license)\n\n## Slides\n\nSlides available on GitHub Pages: https://crazy-max.github.io/lorrainejug-buildx-bake/\n\n### Render\n\n```shell\ngit clone https://github.com/crazy-max/lorrainejug-buildx-bake.git\ncd lorrainejug-buildx-bake\n\n# generate slides to ./www folder\ndocker buildx bake slides\n```\n\n### Run and auto-reload\n\n```shell\ndocker run --rm --init -v $(pwd)/slides:/home/marp/app -p 8080:8080 -p 37717:37717 marpteam/marp-cli:v1.4.2 -w -s -I .\n# open your browser at http://localhost:8080\n```\n\n### GitHub Actions with `bake` and GitHub Pages\n\nGitHub Action workflow available in [.github/workflows/slides.yml](.github/workflows/slides.yml)\n\n## Demo app\n\n### Sources\n\nSources available in [./demo](demo) folder.\n\n### Build\n\n```shell\ngit clone https://github.com/crazy-max/lorrainejug-buildx-bake.git\ncd lorrainejug-buildx-bake\n\n# build docker image and output to docker with lorrainejug-bake:local tag (default)\ndocker buildx bake image-local\n\n# build multi-platform image\ndocker buildx bake image-all\n\n# create the artifact matching your current platform in ./dist\ndocker buildx bake artifact\n\n# create artifacts for many platforms in ./dist\ndocker buildx bake artifact-all\n```\n\n### GitHub Actions\n\nGitHub Action workflow available in [.github/workflows/build.yml](.github/workflows/build.yml)\n\n* Using [docker/bake-action](https://github.com/docker/bake-action) to:\n  * Create artifacts for [GitHub Releases](https://github.com/crazy-max/lorrainejug-buildx-bake/releases)\n  * Publish multi-platform Docker image to [Docker Hub](https://hub.docker.com/r/crazymax/lorrainejug-buildx-bake/tags?page=1\u0026ordering=last_updated) and [GHCR](https://github.com/users/crazy-max/packages/container/package/lorrainejug-buildx-bake)\n\n## License\n\nMIT. See `LICENSE` for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Florrainejug-buildx-bake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazy-max%2Florrainejug-buildx-bake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Florrainejug-buildx-bake/lists"}