| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| rules_docker-v0.26.0.tar.gz | 2025-12-22 | 600.4 kB | |
| README.md | 2025-12-15 | 6.7 kB | |
| v0.26.0 source code.tar.gz | 2025-12-15 | 600.1 kB | |
| v0.26.0 source code.zip | 2025-12-15 | 905.8 kB | |
| Totals: 4 Items | 2.1 MB | 0 | |
Copy the following into your WORKSPACE file to use rules_docker at release v0.26.0
http_archive(
name = "io_bazel_rules_docker",
sha256 = "f6dcb97e992f13bc9effd794e9bb300f06b0dadc88061f81ae68d8d5994be964",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_docker/releases/download/v0.26.0/rules_docker-v0.26.0.tar.gz",
"https://github.com/bazelbuild/rules_docker/releases/download/v0.26.0/rules_docker-v0.26.0.tar.gz",
],
)
What's Changed
- Update README to account for new tar build output by @eap in https://github.com/bazelbuild/rules_docker/pull/2123
- Update rules_pkg to the latest release. by @aiuto in https://github.com/bazelbuild/rules_docker/pull/2125
- Set MaxIdleConnsPerHost for pushes by @jonjohnsonjr in https://github.com/bazelbuild/rules_docker/pull/2132
- Add java_layer rule that allows fine layering of JVM dependencies (like py_layer for Python) by @ns476 in https://github.com/bazelbuild/rules_docker/pull/2122
- README.md: rename
client.json->config.jsonin one place. by @saser in https://github.com/bazelbuild/rules_docker/pull/2146 - remove unused and redundant --stamp-info-file by @zevdg in https://github.com/bazelbuild/rules_docker/pull/2022
- Fix docker executable not being quoted in shell script templates by @gudmundur-heimisson in https://github.com/bazelbuild/rules_docker/pull/2147
- Load foreign layers last by @bpcreech in https://github.com/bazelbuild/rules_docker/pull/2100
- Support authentication in contrib/push-all.bzl by @aherrmann in https://github.com/bazelbuild/rules_docker/pull/1728
- Fixing CI by @linzhp in https://github.com/bazelbuild/rules_docker/pull/2178
- Properly close files after read/write by @linzhp in https://github.com/bazelbuild/rules_docker/pull/2176
- Update distroless images with running update_deps.sh by @dragon3 in https://github.com/bazelbuild/rules_docker/pull/2163
- Add insecure repository support by @fahhem in https://github.com/bazelbuild/rules_docker/pull/1403
- Build darwin arm64 to ci workflow by @connyay in https://github.com/bazelbuild/rules_docker/pull/2169
- Switch from cfg = "host" to "exec" by @mostynb in https://github.com/bazelbuild/rules_docker/pull/2196
- image.bzl: implement
tag_nameby @motiejus in https://github.com/bazelbuild/rules_docker/pull/2205 - Add missing RunAnd* mnemonics by @joeljeske in https://github.com/bazelbuild/rules_docker/pull/2143
- Fix import (fixes --noexperimental_python_import_all_repositories) by @AugustKarlstedt in https://github.com/bazelbuild/rules_docker/pull/2171
- Fixes
output_image_namein install_pkgs to be optional by @lukokr-aarch64 in https://github.com/bazelbuild/rules_docker/pull/2202 - Use 'cfg=target' for pusher binary by @anguslees in https://github.com/bazelbuild/rules_docker/pull/2203
- go_image: implement
tag_nameby @motiejus in https://github.com/bazelbuild/rules_docker/pull/2206 - Remove aspect docs link by @alexeagle in https://github.com/bazelbuild/rules_docker/pull/2225
- Allow labels to be overriden by custom container_image rules by @hamsterstorm in https://github.com/bazelbuild/rules_docker/pull/2223
- Add comment about overriding container_push destination by @coryrc in https://github.com/bazelbuild/rules_docker/pull/2221
- Fix label override provided by custom container_image rules by @hamsterstorm in https://github.com/bazelbuild/rules_docker/pull/2233
- chore: add maintenance status to top of README by @alexeagle in https://github.com/bazelbuild/rules_docker/pull/2236
- Force lower case on Bazel pkg path to play nice with oci container name spec by @sfc-gh-bxin in https://github.com/bazelbuild/rules_docker/pull/2252
- deprecate rules_docker by @linzhp in https://github.com/bazelbuild/rules_docker/pull/2277
- Revert "Introduce github action to mark stale issues/PRs" by @alexeagle in https://github.com/bazelbuild/rules_docker/pull/2278
- Update README to clarify maintenance status of rules_docker by @pcj in https://github.com/bazelbuild/rules_docker/pull/2279
- .bazelversion: upgrade to 8.2.0 by @sluongng in https://github.com/bazelbuild/rules_docker/pull/2285
- Correct docs for container_layer's mode attribute by @coryrc in https://github.com/bazelbuild/rules_docker/pull/2268
- Load py symbols from @rules_python by @pcj in https://github.com/bazelbuild/rules_docker/pull/2286
- fix(container/image.bzl): add missing mnemonics to actions by @tyler-french in https://github.com/bazelbuild/rules_docker/pull/2284
- Update URLs to use Bazel mirror for downloads by @meteorcloudy in https://github.com/bazelbuild/rules_docker/pull/2292
New Contributors
- @eap made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2123
- @aiuto made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2125
- @ns476 made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2122
- @saser made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2146
- @zevdg made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2022
- @gudmundur-heimisson made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2147
- @aherrmann made their first contribution in https://github.com/bazelbuild/rules_docker/pull/1728
- @dragon3 made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2163
- @fahhem made their first contribution in https://github.com/bazelbuild/rules_docker/pull/1403
- @connyay made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2169
- @mostynb made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2196
- @motiejus made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2205
- @AugustKarlstedt made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2171
- @lukokr-aarch64 made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2202
- @anguslees made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2203
- @hamsterstorm made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2223
- @coryrc made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2221
- @sfc-gh-bxin made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2252
- @tyler-french made their first contribution in https://github.com/bazelbuild/rules_docker/pull/2284
Full Changelog: https://github.com/bazelbuild/rules_docker/compare/v0.25.0...v0.26.0