common
common copied to clipboard
Location for shared common files in github.com/containers repos.
I'm told the `libimage.ImageConfigFromChanges()` function is broken. Reproducer: (The exact image used doesn't matter) ``` $ podman pull registry.fedoraproject.org/fedora:latest $ podman save registry.fedoraproject.org/fedora:latest > asdf.tar $ podman import -c 'ENV=PS1=$(whoami)...
When calling Save() from the podman API using file paths as parameter requires us to write a temporary file, this is bad since the API then needs to read it...
containers.conf: ``` cni_plugin_dirs = [ "/usr/local/libexec/cni", "/usr/libexec/cni", "/usr/local/lib/cni", "/usr/lib/cni", "/opt/cni/bin", ] ``` ``` conmon_path = [ "/usr/libexec/podman/conmon", "/usr/local/libexec/podman/conmon", "/usr/local/lib/podman/conmon", "/usr/bin/conmon", "/usr/sbin/conmon", "/usr/local/bin/conmon", "/usr/local/sbin/conmon" ] ``` ``` helper_binaries_dir = [ "/usr/local/libexec/podman",...
There is currently no https://docs.docker.com/engine/reference/commandline/dockerd/#docker-runtime-execution-options equivalent option in [engine.runtimes]. This feature is very useful for kata runtime Also, this feature makes it easier to debug the runtime Configuration format assumptions:...
- [ ] Interactively prompt for known_hosts inclusion before adding an entry - [ ] Either make handling of missing known_hosts and known_hosts that miss an entry _for a specific...
We face intermittent networking issues copying an image from Artifactory to ECR. In order to mitigate these issues, we tried setting `--retry-times`, but it appears that it does not consider...
Despite the warning in the config file, `default_subnet` works fine for IPv6 default subnets. (Note, I redacted the actual subnets here. I used actual routable IPv6 space for the test...
Secrets sounds a lot like systemd "credentials". (Though we try a bit harder to lock them down via ramfs rather than tmpfs). Might be worth making them compatible by setting...
Because not all distributions have `/usr/libexec`(example: Arch), and some system administrators may want /usr/local/libexec to have a higher priority Configuration format assumptions: ``` [containers] init = [ "/usr/local/libexec/podman/catatonit", "/usr/local/lib/podman/catatonit", "/usr/libexec/podman/catatonit",...
Currently, the system locations for `containers.conf` are hardcoded to `/usr/share/containers/containers.conf` for the Default file and `/etc/containers/containers.conf` for the System override. (And `~/.config/containers/containers.conf` for User overrides, but that's not really at...