We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On current rawhide with crun:
$ cat Dockerfile FROM alpine RUN /bin/true $ podman build --format=docker . STEP 1: FROM alpine STEP 2: RUN /bin/true 2019-09-04T16:00:31.000904355Z: sync socket closed error running container: error creating container for [/bin/sh -c /bin/true]: : exit status 1 Error: error building at STEP "RUN /bin/true": error while running runtime: exit status 1 $ echo $? 125
I can't check root because podman-root is 100% broken (rhbz1748214).
With --log-level=debug:
... DEBU[0000] Running ["/usr/bin/crun" "create" "--bundle" "/tmp/buildah302112233" "--pid-file" "/tmp/buildah302112233/pid" "--no-new-keyring" "--console-socket" "/tmp/buildah302112233/console.sock" "buildah-buildah302112233"] 2019-09-04T16:02:19.000002978Z: sync socket closed
podman-1.5.2-0.46.dev.git1d8a940.fc32.x86_64 crun-0.7-2.fc31.x86_64 package runc is not installed
The text was updated successfully, but these errors were encountered:
Buildah has hard coded runc into itself. We have just fixed this, and need to vendor an updated buildah into podman to fix it on F31 and Rawhide.
Sorry, something went wrong.
I can't remember what patch exactly, but there is a fix in crun 0.8 that is needed for working with Buildah.
Also Buildah doesn't uses systemd cgroups (it always uses cgroupfs), so we need something like:
$ podman build --runtime-flag 'systemd' .
I've opened a PR to take care of the second issue: #3944
build: pass down the cgroup manager to buildah
06f94be
Pass down the cgroup manager to use to buildah. Closes: containers#3938 Signed-off-by: Giuseppe Scrivano <[email protected]>
Confirmed fixed in podman-1.5.2-0.63.dev.git511b071.fc32.x86_64, thank you
giuseppe
Successfully merging a pull request may close this issue.
On current rawhide with crun:
I can't check root because podman-root is 100% broken (rhbz1748214).
With --log-level=debug:
podman-1.5.2-0.46.dev.git1d8a940.fc32.x86_64
crun-0.7-2.fc31.x86_64
package runc is not installed
The text was updated successfully, but these errors were encountered: