fix: use cache_images instead of cache_from to avoid comma splitting
The plugin-docker-buildx (Codeberg version) changed CacheFrom from string to StringSlice, which causes urfave/cli to split on commas. The cache_images setting properly handles registry refs by generating both --cache-from and --cache-to flags automatically.
This commit is contained in:
parent
c5c3b092e5
commit
b3eaf76684
2 changed files with 2 additions and 4 deletions
|
|
@ -26,8 +26,7 @@ steps:
|
||||||
dockerfile: cli/Dockerfile
|
dockerfile: cli/Dockerfile
|
||||||
context: cli
|
context: cli
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
cache_from: "type=registry,ref=registry.viktorbarzin.lan:5050/infra:buildcache"
|
cache_images: registry.viktorbarzin.lan:5050/infra:buildcache
|
||||||
cache_to: "type=registry,ref=registry.viktorbarzin.lan:5050/infra:buildcache,mode=max"
|
|
||||||
buildkit_config: |
|
buildkit_config: |
|
||||||
[registry."registry.viktorbarzin.lan:5050"]
|
[registry."registry.viktorbarzin.lan:5050"]
|
||||||
http = true
|
http = true
|
||||||
|
|
|
||||||
|
|
@ -29,8 +29,7 @@ steps:
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
provenance: false
|
provenance: false
|
||||||
tags: latest
|
tags: latest
|
||||||
cache_from: "type=registry,ref=registry.viktorbarzin.lan:5050/f1-stream:buildcache"
|
cache_images: registry.viktorbarzin.lan:5050/f1-stream:buildcache
|
||||||
cache_to: "type=registry,ref=registry.viktorbarzin.lan:5050/f1-stream:buildcache,mode=max"
|
|
||||||
buildkit_config: |
|
buildkit_config: |
|
||||||
[registry."registry.viktorbarzin.lan:5050"]
|
[registry."registry.viktorbarzin.lan:5050"]
|
||||||
http = true
|
http = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue