All Projects → cybercode → Alpine Nginx

cybercode / Alpine Nginx

Docker config for a very small nginx container

Labels

Projects that are alternatives of or similar to Alpine Nginx

Android device amazon otterx
It's otter.. but better
Stars: ✭ 7 (-30%)
Mutual labels:  makefile
Dreamsis
Mentor program management tool created by the Dream Project at the University of Washington
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Docs
Documentation for Bookworm: particularly focusing on creation aspects -
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Base2grob
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Device Sony Ivy
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Dockerized lara
Build your Laravel App with Redis - Mongodb - MariaDB - Nginx - php7 - zsh
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Rpi Hugo
Raspberry Pi compatible Docker Image with Hugo - a static webpage builder
Stars: ✭ 7 (-30%)
Mutual labels:  makefile
Android device samsung herolte
Stars: ✭ 10 (+0%)
Mutual labels:  makefile
Fonts
Terminal bitmap fonts
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Disable Dhe
Disable DHE cipher suites in Firefox
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Gmf
GFM: One-button to init、build、commit、push and so on. 项目初始化、构建、提交、发布等操作一键即可!
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Ti.signinwith
A Titanium module for generic access to ident provider
Stars: ✭ 8 (-20%)
Mutual labels:  makefile
Sfpcrecreatingthepastspring2018
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Hello
Hello world demonstration for Weblate
Stars: ✭ 7 (-30%)
Mutual labels:  makefile
Proprietary vendor widevine
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Device Sony Eagle
Stars: ✭ 7 (-30%)
Mutual labels:  makefile
React Native App Boilerplate
A simple and scalable boiler plate code for React Native App using React Native Navigation by WiX and Saga .
Stars: ✭ 9 (-10%)
Mutual labels:  makefile
Remixos Bootable Newinstaller
bootable/newinstaller - generate initrd.img and install.img
Stars: ✭ 10 (+0%)
Mutual labels:  makefile
Influxdb Slurm Monitoring
Stars: ✭ 10 (+0%)
Mutual labels:  makefile
Freedonia Compliance
SSP for the Freedonia national website
Stars: ✭ 9 (-10%)
Mutual labels:  makefile

Alpine Nginx

This is a Dockerfile to build an nginx container FROM Alpine Linux.

Image build

By default, the Makefile will pull the latest Alpine version from dockerhub and build the image.

The Alpine version is specified in the Dockerfile via an ARG instruction, set to defaults in both the Makefile and Dockerfile (so both the pull and the automated dockerhub build work corectly.) The Nginx version is set via an ENV instruction. As of this writing, the version defaults are:

  • Alpine 3.6
  • Nginx 1.12.1

Nginx configuration

The configuration is almost identical the the official Nginx container, with the exception of the following changes:

Modified options

  • --error-log-path=stderr
  • --http-log-path=/dev/stdout

Removed options

  • --with-http_dav_module
  • --with-http_flv_module
  • --with-http_mp4_module
  • --with-http_random_index_module
  • --with-http_secure_link_module
  • --with-mail
  • --with-mail_ssl_module
  • --with-file-aio (unsupported on Alpine Linux)

Added options

  • --with-pcre-jit
  • --without-http_memcached_module
  • --without-mail_pop3_module
  • --without-mail_imap_module
  • --without-mail_smtp_module
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].