Simple NGINX install. Designed to be paired with PHP-FPM container.
1.7K
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:
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...
Content type
Image
Digest
Size
199.7 MB
Last updated
over 10 years ago
docker pull gte451f/nginx