transfer to richarvey github account
This commit is contained in:
13
CHANGELOG
13
CHANGELOG
@@ -1,13 +0,0 @@
|
|||||||
# Change Log
|
|
||||||
All notable changes to this project will be documented in this file.
|
|
||||||
|
|
||||||
## [1.1.2] - 2017-2-17
|
|
||||||
### Added
|
|
||||||
- Bumped nginx version to 1.11.10
|
|
||||||
- changed pull script to do composer install (container scripts 0.2.6)
|
|
||||||
- added --no-dev to composer install thx @SamMousa
|
|
||||||
- Moved to semver
|
|
||||||
|
|
||||||
## [1.1.1] - 2017-2-14
|
|
||||||
### Added
|
|
||||||
- Stable Release
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
FROM php:7.1.8-fpm-alpine
|
FROM php:7.1.8-fpm-alpine
|
||||||
|
|
||||||
MAINTAINER ngineered <support@ngineered.co.uk>
|
MAINTAINER Ric Harvey <ric@ngd.io>
|
||||||
|
|
||||||
ENV php_conf /usr/local/etc/php-fpm.conf
|
ENV php_conf /usr/local/etc/php-fpm.conf
|
||||||
ENV fpm_conf /usr/local/etc/php-fpm.d/www.conf
|
ENV fpm_conf /usr/local/etc/php-fpm.d/www.conf
|
||||||
|
|||||||
53
README.md
53
README.md
@@ -1,6 +1,5 @@
|
|||||||

|

|
||||||

|

|
||||||

|
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
This is a Dockerfile/image to build a container for nginx and php-fpm, with the ability to pull website code from git when the container is created, as well as allowing the container to push and pull changes to the code to and from git. The container also has the ability to update templated files with variables passed to docker in order to update your code and settings. There is support for lets encrypt SSL configurations, custom nginx configs, core nginx/PHP variable overrides for running preferences, X-Forwarded-For headers and UID mapping for local volume support.
|
This is a Dockerfile/image to build a container for nginx and php-fpm, with the ability to pull website code from git when the container is created, as well as allowing the container to push and pull changes to the code to and from git. The container also has the ability to update templated files with variables passed to docker in order to update your code and settings. There is support for lets encrypt SSL configurations, custom nginx configs, core nginx/PHP variable overrides for running preferences, X-Forwarded-For headers and UID mapping for local volume support.
|
||||||
@@ -12,10 +11,10 @@ If you have improvements or suggestions please open an issue or pull request on
|
|||||||
|-----|-------|-----|--------|--------|
|
|-----|-------|-----|--------|--------|
|
||||||
| latest | Master Branch |1.13.4 | 7.1.8 | 3.4 |
|
| latest | Master Branch |1.13.4 | 7.1.8 | 3.4 |
|
||||||
|
|
||||||
For other tags please see: [versioning](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/versioning.md)
|
For other tags please see: [versioning](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/versioning.md)
|
||||||
|
|
||||||
### Links
|
### Links
|
||||||
- [https://github.com/ngineered/nginx-php-fpm](https://github.com/ngineered/nginx-php-fpm)
|
- [https://github.com/richarvey/nginx-php-fpm](https://github.com/richarvey/nginx-php-fpm)
|
||||||
- [https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/](https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/)
|
- [https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/](https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/)
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
@@ -38,29 +37,29 @@ You can then browse to ```http://<DOCKER_HOST>``` to view the default install fi
|
|||||||
For more detailed examples and explanations please refer to the documentation.
|
For more detailed examples and explanations please refer to the documentation.
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
- [Building from source](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/building.md)
|
- [Building from source](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/building.md)
|
||||||
- [Versioning](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/versioning.md)
|
- [Versioning](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/versioning.md)
|
||||||
- [Config Flags](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/config_flags.md)
|
- [Config Flags](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/config_flags.md)
|
||||||
- [Git Auth](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_auth.md)
|
- [Git Auth](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_auth.md)
|
||||||
- [Personal Access token](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_auth.md#personal-access-token)
|
- [Personal Access token](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_auth.md#personal-access-token)
|
||||||
- [SSH Keys](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_auth.md#ssh-keys)
|
- [SSH Keys](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_auth.md#ssh-keys)
|
||||||
- [Git Commands](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_commands.md)
|
- [Git Commands](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_commands.md)
|
||||||
- [Push](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_commands.md#push-code-to-git)
|
- [Push](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_commands.md#push-code-to-git)
|
||||||
- [Pull](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/git_commands.md#pull-code-from-git-refresh)
|
- [Pull](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/git_commands.md#pull-code-from-git-refresh)
|
||||||
- [Repository layout / webroot](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/repo_layout.md)
|
- [Repository layout / webroot](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/repo_layout.md)
|
||||||
- [webroot](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/repo_layout.md#src--webroot)
|
- [webroot](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/repo_layout.md#src--webroot)
|
||||||
- [User / Group Identifiers](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/UID_GID_Mapping.md)
|
- [User / Group Identifiers](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/UID_GID_Mapping.md)
|
||||||
- [Custom Nginx Config files](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/nginx_configs.md)
|
- [Custom Nginx Config files](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/nginx_configs.md)
|
||||||
- [REAL IP / X-Forwarded-For Headers](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/nginx_configs.md#real-ip--x-forwarded-for-headers)
|
- [REAL IP / X-Forwarded-For Headers](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/nginx_configs.md#real-ip--x-forwarded-for-headers)
|
||||||
- [Scripting and Templating](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/scripting_templating.md)
|
- [Scripting and Templating](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/scripting_templating.md)
|
||||||
- [Environment Variables](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/scripting_templating.md#using-environment-variables--templating)
|
- [Environment Variables](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/scripting_templating.md#using-environment-variables--templating)
|
||||||
- [Lets Encrypt Support](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/lets_encrypt.md)
|
- [Lets Encrypt Support](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/lets_encrypt.md)
|
||||||
- [Setup](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/lets_encrypt.md#setup)
|
- [Setup](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/lets_encrypt.md#setup)
|
||||||
- [Renewal](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/lets_encrypt.md#renewal)
|
- [Renewal](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/lets_encrypt.md#renewal)
|
||||||
- [PHP Modules](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/php_modules.md)
|
- [PHP Modules](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/php_modules.md)
|
||||||
- [Xdebug](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/xdebug.md)
|
- [Xdebug](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/xdebug.md)
|
||||||
- [Logging and Errors](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/logs.md)
|
- [Logging and Errors](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/logs.md)
|
||||||
|
|
||||||
## Guides
|
## Guides
|
||||||
- [Running in Kubernetes](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/guides/kubernetes.md)
|
- [Running in Kubernetes](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/guides/kubernetes.md)
|
||||||
- [Using Docker Compose](https://github.com/ngineered/nginx-php-fpm/blob/master/docs/guides/docker_compose.md)
|
- [Using Docker Compose](https://github.com/richarvey/nginx-php-fpm/blob/master/docs/guides/docker_compose.md)
|
||||||
|
|||||||
Reference in New Issue
Block a user