Mikhail f. Shiryaev
Mikhail f. Shiryaev
> Alternatively, `docker buildx imagetools create` (with the `--append` option) could possibly work as well to append new architectures to a manifest; https://docs.docker.com/engine/reference/commandline/buildx_imagetools_create/ Dear @thaJeztah, how can one do it?...
@thaJeztah another question regarding your point > This digest is calculated when the image is pushed. I highly doubt it's the currently correct statement. When I use `docker buildx build...
You are right, after `docker buildx prune` the new built images are different ```diff diff -ru1 tmp/docker_images_check/head-alpine-amd64 tmp/docker_images_check_cached/head-alpine-amd64 --- tmp/docker_images_check/head-alpine-amd64 2022-03-31 14:50:29.816595096 +0200 +++ tmp/docker_images_check_cached/head-alpine-amd64 2022-03-31 10:46:31.912117357 +0200 @@ -22,12...
I didn't experiment locally but would push w/o tagging and latter using preserved sha256 work?
In our case, the push is done here https://github.com/ClickHouse/ClickHouse/blob/1e4fe038f562029fc24a0e7a33e5d428ea0474f9/tests/ci/docker_server.py#L243-L245, and the metadata file is preserved in https://github.com/ClickHouse/ClickHouse/blob/1e4fe038f562029fc24a0e7a33e5d428ea0474f9/tests/ci/docker_server.py#L264 So later the metadata is read and the container's digest used to combine...
It's evident that the manifest from the single `docker build --platform a,b,c,d` command is created. This feature is at least 3 or 4 years old, AFAIK. This feature request is...
It looks broken on the following code: ```python import logging import os from typing import Any def git_runner(*args: Any, **kwargs: Any) -> str: "nothing" return str(*args, **kwargs) GIT_PREFIX = "git"...
Installed the latest version from [21c6d8b](https://github.com/vim/vim/pull/14057/commits/21c6d8b5b6ef510c9c78b9dfb89a41146599505f) as `curl -s https://raw.githubusercontent.com/vim/vim/21c6d8b5b6ef510c9c78b9dfb89a41146599505f/runtime/syntax/python.vim > ~/.vim/syntax/python.vim`, and it looks good. Thanks! 
```python VAR = ( "placeholderplaceholderplaceholderplaceholderplaceholderplaceholderplaceholder" if not bool() else f"placeholder {bool()}" ) if not VAR: logging.debug("placeholder") _ = VAR ``` Another broken code. The closing curly brace there `{bool()}` is...
Yes, it looks to be broken together with https://github.com/luochen1990/rainbow Is it something that I should bring to the plugin repo to address? As far as I get, the work here...