-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added Dockerfile for php84 with multiarchitecture support
- Loading branch information
1 parent
0300e8e
commit 80a2199
Showing
23 changed files
with
84 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ on: | |
- "8.2" | ||
- "8.2-s6" | ||
- "8.3-s6" | ||
- "8.4-s6" | ||
|
||
jobs: | ||
build-and-push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,7 +314,7 @@ pm.max_requests = 200 | |
; The log file for slow requests | ||
; Default Value: not set | ||
; Note: slowlog is mandatory if request_slowlog_timeout is set | ||
slowlog = /var/log/php83/$pool.slow.log | ||
slowlog = /var/log/php84/$pool.slow.log | ||
|
||
; The timeout for serving a single request after which a PHP backtrace will be | ||
; dumped to the 'slowlog' file. A value of '0s' means 'off'. | ||
|
@@ -408,6 +408,6 @@ clear_env = no | |
; specified at startup with the -d argument | ||
;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f [email protected] | ||
php_flag[display_errors] = On | ||
php_admin_value[error_log] = /var/log/php83/$pool.error.log | ||
php_admin_value[error_log] = /var/log/php84/$pool.error.log | ||
php_admin_flag[log_errors] = On | ||
;php_admin_value[memory_limit] = 32M |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/with-contenv bash | ||
# shellcheck shell=bash | ||
|
||
# add environment variable into files | ||
dockerize -template /etc/php84/php.ini:/etc/php84/php.ini -template /etc/php84/php-fpm.conf:/etc/php84/php-fpm.conf -template /etc/php84/php-fpm.d:/etc/php84/php-fpm.d |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/etc/s6-overlay/s6-rc.d/init-php84-fpm/run |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
/usr/sbin/php-fpm84 --nodaemonize --fpm-config /etc/php84/php-fpm.conf |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
dockerize -stdout /var/www/storage/logs/laravel.log -stdout /var/log/nginx/error.log -stdout /var/log/php83/error.log -poll | ||
dockerize -stdout /var/www/storage/logs/laravel.log -stdout /var/log/nginx/error.log -stdout /var/log/php84/error.log -poll |
File renamed without changes.
File renamed without changes.