From 3c3c24c83b6cc90e8e88fd5b2cde6c3038449395 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 19 Mar 2019 21:08:55 -0400 Subject: [PATCH] systemd: README --- systemd/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 systemd/README.md 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 +```