.. | ||
Dockerfile | ||
Dockerfile.centos | ||
README.md |
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