container-images/systemd/README.md

241 B

systemd container

Building on this is easy as:

FROM systemd
RUN dnf -y install httpd; dnf clean all; systemctl enable httpd.service
EXPOSE 80
podman build -t httpd .
podman run -it --rm --systemd -P httpd