11![ docker hub] ( https://img.shields.io/docker/pulls/richarvey/nginx-php-fpm.svg?style=flat-square )
22![ docker hub] ( https://img.shields.io/docker/stars/richarvey/nginx-php-fpm.svg?style=flat-square )
3- ![ Travis] ( https://img.shields.io/travis/ngineered/nginx-php-fpm.svg?style=flat-square )
43
54## Overview
65This 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
1211| -----| -------| -----| --------| --------|
1312| latest | Master Branch | 1.13.4 | 7.1.8 | 3.4 |
1413
15- For other tags please see: [ versioning] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/versioning.md )
14+ For other tags please see: [ versioning] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/versioning.md )
1615
1716### Links
18- - [ https://github.com/ngineered /nginx-php-fpm ] ( https://github.com/ngineered /nginx-php-fpm )
17+ - [ https://github.com/richarvey /nginx-php-fpm ] ( https://github.com/richarvey /nginx-php-fpm )
1918- [ https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/ ] ( https://registry.hub.docker.com/u/richarvey/nginx-php-fpm/ )
2019
2120## Quick Start
@@ -38,29 +37,29 @@ You can then browse to ```http://<DOCKER_HOST>``` to view the default install fi
3837For more detailed examples and explanations please refer to the documentation.
3938## Documentation
4039
41- - [ Building from source] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/building.md )
42- - [ Versioning] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/versioning.md )
43- - [ Config Flags] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/config_flags.md )
44- - [ Git Auth] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_auth.md )
45- - [ Personal Access token] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_auth.md#personal-access-token )
46- - [ SSH Keys] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_auth.md#ssh-keys )
47- - [ Git Commands] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_commands.md )
48- - [ Push] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_commands.md#push-code-to-git )
49- - [ Pull] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/git_commands.md#pull-code-from-git-refresh )
50- - [ Repository layout / webroot] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/repo_layout.md )
51- - [ webroot] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/repo_layout.md#src--webroot )
52- - [ User / Group Identifiers] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/UID_GID_Mapping.md )
53- - [ Custom Nginx Config files] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/nginx_configs.md )
54- - [ 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 )
55- - [ Scripting and Templating] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/scripting_templating.md )
56- - [ Environment Variables] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/scripting_templating.md#using-environment-variables--templating )
57- - [ Lets Encrypt Support] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/lets_encrypt.md )
58- - [ Setup] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/lets_encrypt.md#setup )
59- - [ Renewal] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/lets_encrypt.md#renewal )
60- - [ PHP Modules] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/php_modules.md )
61- - [ Xdebug] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/xdebug.md )
62- - [ Logging and Errors] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/logs.md )
40+ - [ Building from source] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/building.md )
41+ - [ Versioning] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/versioning.md )
42+ - [ Config Flags] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/config_flags.md )
43+ - [ Git Auth] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_auth.md )
44+ - [ Personal Access token] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_auth.md#personal-access-token )
45+ - [ SSH Keys] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_auth.md#ssh-keys )
46+ - [ Git Commands] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_commands.md )
47+ - [ Push] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_commands.md#push-code-to-git )
48+ - [ Pull] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/git_commands.md#pull-code-from-git-refresh )
49+ - [ Repository layout / webroot] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/repo_layout.md )
50+ - [ webroot] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/repo_layout.md#src--webroot )
51+ - [ User / Group Identifiers] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/UID_GID_Mapping.md )
52+ - [ Custom Nginx Config files] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/nginx_configs.md )
53+ - [ 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 )
54+ - [ Scripting and Templating] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/scripting_templating.md )
55+ - [ Environment Variables] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/scripting_templating.md#using-environment-variables--templating )
56+ - [ Lets Encrypt Support] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/lets_encrypt.md )
57+ - [ Setup] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/lets_encrypt.md#setup )
58+ - [ Renewal] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/lets_encrypt.md#renewal )
59+ - [ PHP Modules] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/php_modules.md )
60+ - [ Xdebug] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/xdebug.md )
61+ - [ Logging and Errors] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/logs.md )
6362
6463## Guides
65- - [ Running in Kubernetes] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/guides/kubernetes.md )
66- - [ Using Docker Compose] ( https://github.com/ngineered /nginx-php-fpm/blob/master/docs/guides/docker_compose.md )
64+ - [ Running in Kubernetes] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/guides/kubernetes.md )
65+ - [ Using Docker Compose] ( https://github.com/richarvey /nginx-php-fpm/blob/master/docs/guides/docker_compose.md )
0 commit comments