All Projects → sclorg → nginx-container

sclorg / nginx-container

Licence: Apache-2.0 License
Nginx high-performance HTTP server and reverse proxy container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.

Programming Languages

shell
77523 projects
Dockerfile
14818 projects
sed
78 projects
HTML
75241 projects

Projects that are alternatives of or similar to nginx-container

S2i Nodejs Container
NodeJS images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running NodeJS applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 128 (+66.23%)
Mutual labels:  fedora, centos, container, rhel
Mariadb Container
MariaDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 19 (-75.32%)
Mutual labels:  fedora, centos, container, rhel
mongodb-container
MongoDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 50 (-35.06%)
Mutual labels:  fedora, centos, container, rhel
Mysql Container
MySQL container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 117 (+51.95%)
Mutual labels:  fedora, centos, container, rhel
S2i Python Container
Python container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running Python applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 178 (+131.17%)
Mutual labels:  fedora, centos, container, rhel
s2i-ruby-container
Ruby container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running Ruby applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 55 (-28.57%)
Mutual labels:  fedora, centos, container, rhel
S2i Php Container
PHP container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running PHP applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 96 (+24.68%)
Mutual labels:  fedora, centos, container, rhel
Ansible Role Firewall
Ansible Role - iptables Firewall configuration.
Stars: ✭ 343 (+345.45%)
Mutual labels:  fedora, centos, rhel
Ansible Role Security
Ansible Role - Security
Stars: ✭ 398 (+416.88%)
Mutual labels:  fedora, centos, rhel
Glim
GRUB Live ISO Multiboot
Stars: ✭ 452 (+487.01%)
Mutual labels:  fedora, centos, rhel
darknet.py
darknet.py is a network application with no dependencies other than Python and Tor, useful to anonymize the traffic of linux servers and workstations.
Stars: ✭ 71 (-7.79%)
Mutual labels:  fedora, centos, rhel
Fpm Within Docker
Leverage fpm inside pre-baked docker images in order to build and test native DEB and RPM packages.
Stars: ✭ 80 (+3.9%)
Mutual labels:  fedora, centos, rhel
devtoolset-container
Devtoolset container images based on Red Hat Software Collections, that provide a platform for building and running C and C++ applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 40 (-48.05%)
Mutual labels:  centos, container, rhel
Ansible Role Apache
Ansible Role - Apache 2.x.
Stars: ✭ 341 (+342.86%)
Mutual labels:  fedora, centos, rhel
Anaconda
System installer for Fedora, RHEL and other distributions
Stars: ✭ 334 (+333.77%)
Mutual labels:  fedora, centos, rhel
Robox
The tools needed to robotically create/configure/provision a large number of operating systems, for a variety of hypervisors, using packer.
Stars: ✭ 303 (+293.51%)
Mutual labels:  fedora, centos, rhel
Docker Centos7 Ansible
CentOS 7 Docker container for Ansible playbook and role testing.
Stars: ✭ 72 (-6.49%)
Mutual labels:  centos, container, rhel
ansible-role-daemonize
Ansible Role - Daemonize.
Stars: ✭ 14 (-81.82%)
Mutual labels:  fedora, centos, rhel
ansible-role-docker-ce
Ansible role to install Docker CE on AlmaLinux/Rocky/CentOS/Fedora/RHEL(Redhat)/Ubuntu/Debian/Mint/Raspbian
Stars: ✭ 73 (-5.19%)
Mutual labels:  fedora, centos, rhel
Nodejs Rpm
node.js rpm spec
Stars: ✭ 199 (+158.44%)
Mutual labels:  fedora, centos, rhel

Nginx container images

nginx-container 1.18 status: Docker Repository on Quay

nginx-container 1.20 status: Docker Repository on Quay

This repository contains Dockerfiles for Nginx images for OpenShift. Users can choose between RHEL and CentOS based images.

For more information about contributing, see the Contribution Guidelines. For more information about concepts used in these container images, see the Landing page.

Versions

Nginx versions currently provided are:

RHEL versions currently supported are:

  • RHEL7
  • RHEL8

CentOS versions currently supported are:

  • CentOS7

Installation

Choose either the CentOS7 or RHEL7 based image:

  • RHEL7 based image

    These images are available in the Red Hat Container Catalog. To download it run:

    $ podman pull registry.access.redhat.com/rhscl/nginx-120-rhel7
    

    To build a RHEL7 based Nginx image, you need to run Docker build on a properly subscribed RHEL machine.

    $ git clone --recursive https://github.com/sclorg/nginx-container.git
    $ cd nginx-container
    $ git submodule update --init
    $ make build TARGET=rhel7 VERSIONS=1.20
    
  • CentOS7 based image

    This image is available on DockerHub. To download it run:

    $ podman pull quay.io/centos7/nginx-120-centos7
    

    To build a CentOS based Nginx image from scratch, run:

    $ git clone --recursive https://github.com/sclorg/nginx-container.git
    $ cd nginx-container
    $ git submodule update --init
    $ make build TARGET=centos7 VERSIONS=1.20
    

For using other versions of Nginx, just replace the 1.20 value by particular version in the commands above.

Note: while the installation steps are calling podman, you can replace any such calls by docker with the same arguments.

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of Nginx, which must be specified in VERSIONS variable. This variable must be set to a list with possible versions (subdirectories).

Usage

For information about usage of Dockerfile for nginx 1.18, see usage documentation.

For information about usage of Dockerfile for nginx 1.20, see usage documentation.

Build

Images can be built using make command.

$ cd nginx-container
$ git submodule update --init
$ make build TARGET=centos7 VERSIONS=1.20

For more information about make rules see README.

Test

This repository also provides a test framework, which checks basic functionality of the Nginx image.

Users can choose between testing Nginx based on a RHEL or CentOS image.

  • RHEL based image

    To test a RHEL7 based Nginx image, you need to run the test on a properly subscribed RHEL machine.

    $ cd nginx-container
    $ git submodule update --init
    $ make test TARGET=rhel7 VERSIONS=1.20
    
  • CentOS based image

    $ cd nginx-container
    $ git submodule update --init
    $ make test TARGET=centos7 VERSIONS=1.20
    

For using other versions of Nginx, just replace the 1.20 value by particular version in the commands above.

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of Nginx, which must be specified in VERSIONS variable. This variable must be set to a list with possible versions (subdirectories).

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].