container-images/systemd
2024-03-27 15:44:36 -04:00
..
Dockerfile systemd container 2024-03-27 15:44:36 -04:00
Dockerfile.centos systemd container 2024-03-27 15:44:36 -04:00
README.md systemd: README 2024-03-27 15:44:36 -04:00

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