Sign inSign up

gte451f/nginx

By gte451f

Updated over 7 years ago

Simple NGINX install. Designed to be paired with PHP-FPM container.

Image
1

1.7K

gte451f/nginx repository overview

What is this?

A simple container holding a copy of NGINX with ready access to a paired PHP server. This container itself depends on an upstream ubuntu container which itself is based on Phusion.

The specific technologies contained with this container are:

  • NGINX Latest
  • Ubuntu 14.04

Sample Compose File

This container may be customized using built in Docker conventions.

web:
    image: gte451f/nginx
    volumes:
        - .:/var/www
        - ./docker/nginx/sites-available/default:/etc/nginx/sites-available/default
        - ./docker/nginx/fastcgi_params:/etc/nginx/fastcgi_params
        - ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf
    ports:
        - "8080:80"
    links:
        - php

php:
  image: gte451f/php:5.6
...your PHP config here...

Tag summary

Content type

Image

Digest

Size

199.7 MB

Last updated

over 10 years ago

docker pull gte451f/nginx