@@ -81,8 +81,8 @@ The following image tags are available along with their tagged release based on
81
81
| PHP version | Alpine Base | Tag | Debian Base | Tag |
82
82
| ----------- | ----------- | -------------- | ----------- | ------------- |
83
83
| latest | edge | ` :alpine-edge ` | | |
84
- | 8.1.x | edge | ` :alpine-8.1 ` | Buster | ` :debian-8.1 ` |
85
- | 8.0.x | 3.15 | ` :alpine-8.0 ` | Buster | ` :debian-8.0 ` |
84
+ | 8.1.x | 3.16 | ` :alpine-8.1 ` | Buster | ` :debian-8.1 ` |
85
+ | 8.0.x | 3.16 | ` :alpine-8.0 ` | Buster | ` :debian-8.0 ` |
86
86
| 7.4.x | 3.15 | ` :alpine-7.4 ` | Buster | ` :debian-7.3 ` |
87
87
| 7.3.x | 3.12 | ` :alpine-7.3 ` | Buster | ` :debian-7.3 ` |
88
88
| 7.2.x | 3.9 | ` :alpine-7.2 ` | | |
@@ -143,31 +143,32 @@ When `PHP_FPM_CONTAINER_MODE` set to `nginx` the `PHP_FPM_LISTEN_PORT` environme
143
143
144
144
* You can also pass arguments to each server as defined in the [ Nginx Upstream Documentation] ( https://nginx.org/en/docs/http/ngx_http_upstream_module.html ) *
145
145
146
- | Parameter | Description | Default |
147
- | --------------------------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
148
- | ` PHP_APC_SHM_SIZE ` | APC Cache Memory size - ` 0 ` to disable | ` 128M ` |
149
- | ` PHP_FPM_HOST ` | Default PHP-FPM Host, seperate multiple by commas | ` 127.0.0.1:9000 ` - See above Container options |
150
- | ` PHP_FPM_LISTEN_PORT ` | PHP-FPM Listening Port - Ignored with above container options | ` 9000 ` |
151
- | ` PHP_FPM_MAX_CHILDREN ` | Maximum Children | ` 75 ` |
152
- | ` PHP_FPM_MAX_REQUESTS ` | How many requests before spawning new server | ` 500 ` |
153
- | ` PHP_FPM_MAX_SPARE_SERVERS ` | Maximum Spare Servers available | ` 3 ` |
154
- | ` PHP_FPM_MIN_SPARE_SERVERS ` | Minium Spare Servers avaialble | ` 1 ` |
155
- | ` PHP_FPM_POST_INIT_COMMAND ` | If you wish to execute a command before php-fpm executes, enter it here and seperate multiples by comma. | |
156
- | ` PHP_FPM_POST_INIT_SCRIPT ` | If you wish to execute a script before php-fpm executes, enter it here and seperate multiples by comma. | |
157
- | ` PHP_FPM_PROCESS_MANAGER ` | How to handle processes ` static ` , ` ondemand ` , ` dynamic ` | ` dynamic ` |
158
- | ` PHP_FPM_START_SERVERS ` | How many FPM servers to start initially | ` 2 ` |
159
- | ` PHP_LOG_ACCESS_FILE ` | PHP Access Logfile Name | ` access.log ` |
160
- | ` PHP_LOG_ERROR_FILE ` | Logfile name | ` error.log ` |
161
- | ` PHP_LOG_LEVEL ` | PHP Log Level ` alert ` ` error ` ` warning ` ` notice ` ` debug ` | ` notice ` |
162
- | ` PHP_LOG_ACCESS_FORMAT ` | Log format - ` default ` or ` json ` | ` default ` |
163
- | ` PHP_LOG_LIMIT ` | Characters to log | ` 2048 ` |
164
- | ` PHP_LOG_LOCATION ` | Log Location for PHP Logs | ` /www/logs/php-fpm ` |
165
- | ` PHP_MEMORY_LIMIT ` | How much memory should PHP use | ` 128M ` |
166
- | ` PHP_OPCACHE_MEM_SIZE ` | OPCache Memory Size - Set ` 0 ` to disable or via other env vars | ` 128 ` |
167
- | ` PHP_POST_MAX_SIZE ` | Maximum Input Size for POST | ` 2G ` |
168
- | ` PHP_TIMEOUT ` | Maximum Script execution Time | ` 180 ` |
169
- | ` PHP_UPLOAD_MAX_SIZE ` | Maximum Input Size for Uploads | ` 2G ` |
170
- | ` PHP_WEBROOT ` | Used with ` CONTAINER_MODE=php-fpm ` | ` /www/html ` |
146
+ | Parameter | Description | Default |
147
+ | ---------------------------- | -------------------------------------------------------------------------------------------------------- | ---------------------------------------------- |
148
+ | ` PHP_APC_SHM_SIZE ` | APC Cache Memory size - ` 0 ` to disable | ` 128M ` |
149
+ | ` PHP_FPM_HOST ` | Default PHP-FPM Host, seperate multiple by commas | ` 127.0.0.1:9000 ` - See above Container options |
150
+ | ` PHP_FPM_LISTEN_PORT ` | PHP-FPM Listening Port - Ignored with above container options | ` 9000 ` |
151
+ | ` PHP_FPM_MAX_CHILDREN ` | Maximum Children | ` 75 ` |
152
+ | ` PHP_FPM_MAX_REQUESTS ` | How many requests before spawning new server | ` 500 ` |
153
+ | ` PHP_FPM_MAX_SPARE_SERVERS ` | Maximum Spare Servers available | ` 3 ` |
154
+ | ` PHP_FPM_MIN_SPARE_SERVERS ` | Minium Spare Servers avaialble | ` 1 ` |
155
+ | ` PHP_FPM_OUTPUT_BUFFER_SIZE ` | Output buffer size in bytes | ` 0 ` |
156
+ | ` PHP_FPM_POST_INIT_COMMAND ` | If you wish to execute a command before php-fpm executes, enter it here and seperate multiples by comma. | |
157
+ | ` PHP_FPM_POST_INIT_SCRIPT ` | If you wish to execute a script before php-fpm executes, enter it here and seperate multiples by comma. | |
158
+ | ` PHP_FPM_PROCESS_MANAGER ` | How to handle processes ` static ` , ` ondemand ` , ` dynamic ` | ` dynamic ` |
159
+ | ` PHP_FPM_START_SERVERS ` | How many FPM servers to start initially | ` 2 ` |
160
+ | ` PHP_LOG_ACCESS_FILE ` | PHP Access Logfile Name | ` access.log ` |
161
+ | ` PHP_LOG_ERROR_FILE ` | Logfile name | ` error.log ` |
162
+ | ` PHP_LOG_LEVEL ` | PHP Log Level ` alert ` ` error ` ` warning ` ` notice ` ` debug ` | ` notice ` |
163
+ | ` PHP_LOG_ACCESS_FORMAT ` | Log format - ` default ` or ` json ` | ` default ` |
164
+ | ` PHP_LOG_LIMIT ` | Characters to log | ` 2048 ` |
165
+ | ` PHP_LOG_LOCATION ` | Log Location for PHP Logs | ` /www/logs/php-fpm ` |
166
+ | ` PHP_MEMORY_LIMIT ` | How much memory should PHP use | ` 128M ` |
167
+ | ` PHP_OPCACHE_MEM_SIZE ` | OPCache Memory Size - Set ` 0 ` to disable or via other env vars | ` 128 ` |
168
+ | ` PHP_POST_MAX_SIZE ` | Maximum Input Size for POST | ` 2G ` |
169
+ | ` PHP_TIMEOUT ` | Maximum Script execution Time | ` 180 ` |
170
+ | ` PHP_UPLOAD_MAX_SIZE ` | Maximum Input Size for Uploads | ` 2G ` |
171
+ | ` PHP_WEBROOT ` | Used with ` CONTAINER_MODE=php-fpm ` | ` /www/html ` |
171
172
172
173
#### Enabling / Disabling Specific Extensions
173
174
0 commit comments