diff --git a/systemd/README.md b/systemd/README.md new file mode 100644 index 0000000..318efd4 --- /dev/null +++ b/systemd/README.md @@ -0,0 +1,14 @@ +# systemd container + +Building on this is easy as: + +```Dockerfile +FROM systemd +RUN dnf -y install httpd; dnf clean all; systemctl enable httpd.service +EXPOSE 80 +``` + +```shell +podman build -t httpd . +podman run -it --rm --systemd -P httpd +```