Find a file
Ricard Bejarano c14a5f4249 added rootfs
2019-02-18 10:40:54 +01:00
rootfs added rootfs 2019-02-18 10:40:54 +01:00
Dockerfile added explicit STOPSIGNAL 2019-02-18 09:56:55 +01:00
LICENSE updated copyright year 2019-02-02 17:02:49 +01:00
README.md replaced gcr.io/distroless/base with scratch, moved to static compilation, added list of image contents to README.md 2019-02-18 09:46:54 +01:00

nginx (Docker image)

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

Available at ricardbejarano/nginx.

Features

  • Super tiny (only 18MB)
  • Built from source, including libraries
  • Based on scratch, see Filesystem for an exhaustive list of the image's contents
  • Included TLS1.3 protocol support (with OpenSSL)
  • Included brotli compression support (with ngx_brotli)

Volumes

Mount your configuration on the container's /etc/nginx folder.

Mount your web content on the container's /etc/nginx/html folder.

Filesystem

The image's contents are:

/
├── etc/
│   ├── group/
│   ├── nginx/
│   │   ├── html/
│   │   │   ├── 50x.html
│   │   │   └── index.html
│   │   ├── mime.types
│   │   └── nginx.conf
│   └── passwd/
├── lib/
│   └── x86_64-linux-gnu/
│       ├── ld-2.24.so
│       ├── ld-linux-x86-64.so.2 → ld-2.24.so
│       ├── libc-2.24.so
│       ├── libc.so.6 → libc-2.24.so
│       ├── libnss_files-2.24.so
│       └── libnss_files.so.2 → libnss_files-2.24.so
├── nginx
└── tmp/

License

See LICENSE.