From e7b128bc7fd7bb7cddefe18b3b9c97197d94dce5 Mon Sep 17 00:00:00 2001 From: Ricard Bejarano Date: Sun, 20 Mar 2022 18:56:35 +0100 Subject: [PATCH] updated readme --- README.md | 38 ++++++++++++++------------------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index b13ce20..2572bb6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,17 @@ -

-

nginx (container image)

-

Built-from-source container image of the NGINX HTTP server

+
+

+

nginx

+

Built-from-source container image of NGINX

+ docker pull quay.io/ricardbejarano/nginx +
+ + +## Features + +* Compiled from source during build time +* Built `FROM scratch`, with zero bloat +* Reduced attack surface (no shell, no UNIX tools, no package manager...) +* Runs as unprivileged (non-`root`) user ## Tags @@ -18,29 +29,8 @@ Available on RedHat Quay as [`quay.io/ricardbejarano/nginx`](https://quay.io/rep - [`1.21.6`, `latest` *(Dockerfile)*](Dockerfile) -## Features - -* Compiled from source during build time -* Built `FROM scratch`, with zero bloat -* Statically linked to the [`musl`](https://musl.libc.org/) implementation of the C standard library -* Reduced attack surface (no shell, no UNIX tools, no package manager...) -* Runs as unprivileged (non-`root`) user - - -## Building - -```bash -docker build --tag ricardbejarano/nginx --file Dockerfile . -``` - - ## Configuration ### Volumes - Mount your **configuration** at `/etc/nginx/nginx.conf`. - - -## License - -MIT licensed, see [LICENSE](LICENSE) for more details.