File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1- FROM quay.io/containers/podman:v5
1+ FROM quay.io/containers/podman:v5.7
22RUN systemctl enable podman.socket \
33 && echo "enable podman.socket" > /usr/lib/systemd/system-preset/95-podman.preset \
44 # create systemd-tmpfiles config to create a symlink for docker to the podman socket
55 # which allows using docker and docker compose without having to set the DOCKER_HOST variable
66 # Source: podman-docker debian package
77 && echo 'L+ %t/docker.sock - - - - %t/podman/podman.sock' | tee /usr/lib/tmpfiles.d/podman-docker-socket.conf \
8- && systemd-tmpfiles --create podman-docker-socket.conf >/dev/null || true
8+ && systemd-tmpfiles --create podman-docker-socket.conf >/dev/null || true \
9+ # disable first boot otherwise the Fedora 43 hangs on startup which prevents other services from starting
10+ && rm -f /usr/lib/systemd/system/sysinit.target.wants/systemd-firstboot.service
911ENTRYPOINT [ "/lib/systemd/systemd" ]
You can’t perform that action at this time.
0 commit comments