common
common copied to clipboard
Location for shared common files in github.com/containers repos.
The Containerfile documentation (https://github.com/containers/common/blob/main/docs/Containerfile.5.md) says that you can use a URL with COPY, but it does not work, with buildah 1.31 at least: > The COPY instruction copies new files...
I'm not sure if it is adequate to allow it by default, but I've run across a case where setarch -R failed to execute within the seccomp profile. it might...
This changed in #1541 without any explanation: ```diff // Allowed: 253 [a-zA-Z0-9-_.] characters, and the start and end character must be [a-zA-Z0-9] -var secretNameRegexp = regexp.Delayed(`^[a-zA-Z0-9][a-zA-Z0-9_.-]*$`) +var secretNameRegexp = regexp.Delayed("^[^/=\000]+$")...
`[engine.service_destinations]` section should be separated from `containers.conf` and moved to a different file. See https://github.com/containers/podman/pull/18909
I am currently trying to shrink the podman binary size. Looking through all dependencies I see that `github.com/jinzhu/copier` is only used a single time. While this package is only 204...
matchesPlatform() inspects images to retrieve their OS/Architecture/Variant values and, after canonicalization, compares the values it finds to passed-in values. Images don't always have this information, so it can be wrong,...
hi containers team, when i learning our code, I found that If i knew the format of the tar file in advance , the program wouldn't need to guess the...
In the "Engine table" section in containers.conf.5.md, `network_cmd_path` and `network_cmd_options` are specific to slirp4netns. With Pasta now the recommended (AFAIK) option in later Podman versions, some mention of it should...
This is an important podman option (basically needed when mapping in host devices in rootful mode with crun) that can currently only be set via the CLI or in docker...
`Runtime.lookupImageInDigestsAndRepoTags` calls, in https://github.com/containers/common/blob/18c4568e8ee051fd8ded1d9d47cfa0453b1d6a0c/libimage/runtime.go#L426, effectively `storage.Store.Images`, getting a copy of all images. On the https://github.com/containers/common/blob/18c4568e8ee051fd8ded1d9d47cfa0453b1d6a0c/libimage/runtime.go#L441 path, `allImages` is manually filtered to only those (the first one) that actually match that...