ratigorsk

podman-in-docker (v5.7.1-3)

Published 2026-02-08 01:16:53 +03:00 by service in ratigorsk/podman-in-docker

Installation

docker pull git.ratigorsk-12.ru/ratigorsk/podman-in-docker:v5.7.1-3
sha256:d783c255f1b9fbb3524836623dde27d16905146c089e32a138fa240486d076e7

Images

Digest OS / Arch Size
419d779050 linux/amd64 215 MiB

Image Layers ( linux/amd64)

KIWI 10.2.33
ARG
ARG FLAVOR
|1 FLAVOR=stable /bin/sh -c echo -e "\n\n# Added during image build" >> /etc/dnf/dnf.conf && echo -e "minrate=100\ntimeout=60\n" >> /etc/dnf/dnf.conf
ARG FLAVOR INSTALL_RPMS
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c dnf -y makecache && dnf -y update && rpm --setcaps shadow-utils 2>/dev/null && case "${FLAVOR}" in stable) dnf -y install $INSTALL_RPMS --exclude container-selinux ;; testing) dnf -y install $INSTALL_RPMS --exclude container-selinux --enablerepo updates-testing ;; upstream) dnf -y install 'dnf-command(copr)' --enablerepo=updates-testing && dnf -y copr enable rhcontainerbot/podman-next && dnf -y install $INSTALL_RPMS --exclude container-selinux --enablerepo=updates-testing ;; *) printf "\\nFLAVOR argument must be set and valid, currently: '${FLAVOR}'\\n\\n" 1>&2 && exit 1 ;; esac && dnf clean all && if test -n "$SOURCE_DATE_EPOCH" ; then sqlite3 /usr/lib/sysimage/libdnf5/transaction_history.sqlite "UPDATE trans SET dt_begin=$SOURCE_DATE_EPOCH, dt_end=$SOURCE_DATE_EPOCH; PRAGMA journal_mode=DELETE; PRAGMA journal_mode=WAL" ; fi && rm -fv /etc/machine-id /var/lib/systemd/random-seed /var/lib/dnf/repos/*/countme && rm -fv /usr/lib/systemd/profile.d/* && rm -rf /var/cache /var/log/dnf* /var/log/hawkey.log /var/log/yum.*
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c useradd podman && echo -e "root:1:65535\npodman:1:999\npodman:1001:64535" > /etc/subuid && echo -e "root:1:65535\npodman:1:999\npodman:1001:64535" > /etc/subgid
ADD file:3d3480db582f434f9bcfa5f55f3f8a6a5885e4f40b104b0ce3ba35b6780d5a69 in /etc/containers/containers.conf
ADD file:9dc1df7375d7fc9ea0193fc9c9d2247ef5e5ce280a65e4e60b1c027f7c41d069 in /home/podman/.config/containers/containers.conf
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c mkdir -p /home/podman/.local/share/containers && chown podman:podman -R /home/podman && chmod 644 /etc/containers/containers.conf
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c sed -e 's|^#mount_program|mount_program|g' -e '/additionalimage.*/a "/var/lib/shared",' -e 's|^mountopt[[:space:]]*=.*$|mountopt = "nodev,fsync=0"|g' /usr/share/containers/storage.conf > /etc/containers/storage.conf
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c printf '/run/secrets/etc-pki-entitlement:/run/secrets/etc-pki-entitlement\n/run/secrets/rhsm:/run/secrets/rhsm\n' > /etc/containers/mounts.conf
VOLUME /var/lib/containers
VOLUME /home/podman/.local/share/containers
|7 FLAVOR=stable INSTALL_RPMS=podman fuse-overlayfs openssh-clients cpp git-core /bin/sh -c mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers /var/lib/shared/vfs-images /var/lib/shared/vfs-layers && touch /var/lib/shared/overlay-images/images.lock && touch /var/lib/shared/overlay-layers/layers.lock && touch /var/lib/shared/vfs-images/images.lock && touch /var/lib/shared/vfs-layers/layers.lock
ENV _CONTAINERS_USERNS_CONFIGURED="" BUILDAH_ISOLATION=chroot
LABEL "org.opencontainers.image.created"="2026-02-07T15:21:39+00:00" "org.opencontainers.image.authors"="podman@lists.podman.io" "org.opencontainers.image.source"="https://github.com/containers/image_build/blob/7586f40841d68018fa373fd9e6cba11ff867f93a/podman/" "org.opencontainers.image.revision"="7586f40841d68018fa373fd9e6cba11ff867f93a" "org.opencontainers.image.documentation"="https://github.com/containers/image_build/blob/7586f40841d68018fa373fd9e6cba11ff867f93a/podman/README.md" "built.by.repo"="https://github.com/containers/image_build.git" "built.by.commit"="7586f40841d68018fa373fd9e6cba11ff867f93a" "built.by.exec"="containers_build_push.sh" "built.by.digest"="sha256:113ae526992d1e4d777ecfb152085119d47d9ee32c2b6ffe2e25e16dbd3e953d" "built.by.logs"="https://cirrus-ci.com/task/5991528071430144" "org.opencontainers.image.version"="5.7.1" "org.opencontainers.image.url"="https://quay.io/containers/podman" "org.opencontainers.image.url"="https://quay.io/podman/stable"
ARG REPO_MIRROR=https://mirror.yandex.ru
RUN |1 REPO_MIRROR=https://mirror.yandex.ru /bin/sh -c set -e; source /etc/os-release; export ARCH=`uname -m`; if ! test -z "${REPO_MIRROR}"; then dnf config-manager setopt fedora.baseurl=${REPO_MIRROR}/fedora/linux/updates/${VERSION_ID}/Everything/${ARCH}/; dnf config-manager setopt fedora.metalink=; dnf config-manager setopt updates.baseurl=${REPO_MIRROR}/fedora/linux/releases/${VERSION_ID}/Everything/${ARCH}/os/; dnf config-manager setopt updates.metalink=; fi; # buildkit
RUN |1 REPO_MIRROR=https://mirror.yandex.ru /bin/sh -c set -e; dnf install -y podman-docker; dnf clean all; rm -rf /var/cache/yum; # buildkit
RUN |1 REPO_MIRROR=https://mirror.yandex.ru /bin/sh -c set -e; touch /etc/containers/nodocker; rm -f /etc/containers/storage.conf; rm -f /etc/containers/containers.conf; # buildkit
ENTRYPOINT ["/usr/bin/podman" "system" "service" "--time" "0" "unix:///var/run/docker.sock"]

Labels

Key Value
built.by.commit 7586f40841d68018fa373fd9e6cba11ff867f93a
built.by.digest sha256:113ae526992d1e4d777ecfb152085119d47d9ee32c2b6ffe2e25e16dbd3e953d
built.by.exec containers_build_push.sh
built.by.logs https://cirrus-ci.com/task/5991528071430144
built.by.repo https://github.com/containers/image_build.git
io.buildah.version 1.39.3
license MIT
name fedora
org.opencontainers.image.authors podman@lists.podman.io
org.opencontainers.image.created 2026-02-07T22:16:01.195Z
org.opencontainers.image.description A Docker-in-Docker like container using Podman for use with Gitea Runner
org.opencontainers.image.documentation https://github.com/containers/image_build/blob/7586f40841d68018fa373fd9e6cba11ff867f93a/podman/README.md
org.opencontainers.image.license MIT
org.opencontainers.image.licenses
org.opencontainers.image.name fedora
org.opencontainers.image.revision 8bad558531482b885447df67cc40639c52380285
org.opencontainers.image.source https://git.ratigorsk-12.ru/ratigorsk/podman-in-docker
org.opencontainers.image.title podman-in-docker
org.opencontainers.image.url https://git.ratigorsk-12.ru/ratigorsk/podman-in-docker
org.opencontainers.image.vendor Fedora Project
org.opencontainers.image.version v5.7.1-3
vendor Fedora Project
version 43
Details
Container
2026-02-08 01:16:53 +03:00
1
OCI / Docker
Versions (6) View all
main 2026-02-08
latest 2026-02-08
v5.7.1-3 2026-02-08
v5.7.1-2 2026-02-07
v5.7.1-1 2026-02-07