-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
202 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
FROM --platform=$BUILDPLATFORM alpine:edge as main | ||
|
||
LABEL maintainer="Jorge Arco <[email protected]>" | ||
|
||
RUN apk --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/main add \ | ||
icu-libs \ | ||
&& apk --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/community add \ | ||
# Current packages don't exist in other repositories | ||
libavif \ | ||
gnu-libiconv \ | ||
# Packages | ||
tini \ | ||
php82 \ | ||
php82-dev \ | ||
php82-common \ | ||
php82-gd \ | ||
php82-xmlreader \ | ||
php82-bcmath \ | ||
php82-ctype \ | ||
php82-curl \ | ||
php82-exif \ | ||
php82-iconv \ | ||
php82-intl \ | ||
php82-mbstring \ | ||
php82-opcache \ | ||
php82-openssl \ | ||
php82-pcntl \ | ||
php82-phar \ | ||
php82-session \ | ||
php82-xml \ | ||
php82-xsl \ | ||
php82-zip \ | ||
php82-zlib \ | ||
php82-dom \ | ||
php82-fpm \ | ||
php82-sodium \ | ||
php82-tokenizer \ | ||
# Iconv Fix | ||
php82-pecl-apcu \ | ||
&& ln -sf /usr/bin/php82 /usr/bin/php | ||
|
||
ADD rootfs / | ||
|
||
ENTRYPOINT ["/sbin/tini", "--"] | ||
|
||
CMD ["/usr/sbin/php-fpm82", "-R", "--nodaemonize"] | ||
|
||
EXPOSE 9000 | ||
|
||
WORKDIR /app | ||
|
||
FROM --platform=$BUILDPLATFORM main as dev | ||
|
||
ARG USER=root | ||
ARG PASSWORD=root | ||
|
||
ARG COMPOSER_VERSION=2.5.1 | ||
|
||
RUN apk add -U --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ | ||
php82-pear \ | ||
openssh \ | ||
supervisor \ | ||
autoconf \ | ||
git \ | ||
curl \ | ||
wget \ | ||
make \ | ||
zip \ | ||
php82-xdebug \ | ||
# Delete APK cache. | ||
&& rm -rf /var/cache/apk/* \ | ||
# Create ssh user for dev. | ||
&& sed -i s/#PermitRootLogin.*/PermitRootLogin\ yes/ /etc/ssh/sshd_config \ | ||
&& echo "${USER}:${PASSWORD}" | chpasswd \ | ||
&& ssh-keygen -A \ | ||
# Download composer. | ||
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer --version=${COMPOSER_VERSION} | ||
|
||
ADD devfs / | ||
|
||
CMD ["supervisord", "--nodaemon", "--configuration", "/etc/supervisord/conf.d/supervisord.conf"] | ||
|
||
EXPOSE 22 9003 |
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,11 @@ | ||
zend_extension=opcache.so | ||
|
||
opcache.memory_consumption=256 | ||
opcache.interned_strings_buffer=8 | ||
opcache.max_accelerated_files=10000 | ||
opcache.revalidate_freq=2 | ||
opcache.fast_shutdown=1 | ||
opcache.enable_cli=1 | ||
opcache.enable=1 | ||
opcache.validate_timestamps=1 | ||
opcache.max_wasted_percentage=10 |
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,11 @@ | ||
zend_extension=xdebug.so | ||
|
||
xdebug.mode=debug | ||
xdebug.log_level=0 | ||
|
||
xdebug.start_with_request=yes | ||
xdebug.client_host=${XDEBUG_CLIENT_HOST} | ||
xdebug.max_nesting_level=250 | ||
|
||
xdebug.var_display_max_data=10000 | ||
xdebug.var_display_max_depth=20 |
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,6 @@ | ||
date.timezone = "UTC" | ||
short_open_tag = Off | ||
session.auto_start = Off | ||
magic_quotes_gpc = Off | ||
register_globals = Off | ||
memory_limit = 1G |
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,19 @@ | ||
export CHARSET=UTF-8 | ||
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | ||
export PAGER=less | ||
export PS1='\h:\w\$ ' | ||
|
||
umask 022 | ||
|
||
alias xon='mv /tmp/00_xdebug.ini /etc/php82/conf.d/' | ||
alias xoff='mv /etc/php82/conf.d/00_xdebug.ini /tmp' | ||
alias opcon='mv /tmp/00_opcache.ini /etc/php82/conf.d/' | ||
alias opcoff='mv /etc/php82/conf.d/00_opcache.ini /tmp' | ||
|
||
alias profile='XDEBUG_CONFIG="profiler_enable=1 xdebug.profiler_output_name=profiler.out.%p profiler_output_dir=." php' | ||
|
||
for script in /etc/profile.d/*.sh ; do | ||
if [ -r $script ] ; then | ||
. $script | ||
fi | ||
done |
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,13 @@ | ||
[supervisord] | ||
nodaemon=true | ||
logfile=/var/log/supervisord.log | ||
pidfile=/var/run/supervisord.pid | ||
|
||
loglevel=debug | ||
user=root | ||
|
||
[program:fpm] | ||
command=/usr/sbin/php-fpm82 -R --nodaemonize | ||
|
||
[program:ssh] | ||
command=/usr/sbin/sshd -D |
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,11 @@ | ||
zend_extension=opcache.so | ||
|
||
opcache.memory_consumption=256 | ||
opcache.interned_strings_buffer=8 | ||
opcache.max_accelerated_files=50000 | ||
opcache.revalidate_freq=60 | ||
opcache.fast_shutdown=1 | ||
opcache.enable_cli=1 | ||
opcache.enable=1 | ||
opcache.validate_timestamps=0 | ||
opcache.max_wasted_percentage=10 |
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,9 @@ | ||
date.timezone = "UTC" | ||
short_open_tag = Off | ||
session.auto_start = Off | ||
magic_quotes_gpc = Off | ||
register_globals = Off | ||
memory_limit = 256M | ||
|
||
realpath_cache_size=4096K | ||
realpath_cache_ttl=600 |
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,36 @@ | ||
[global] | ||
emergency_restart_threshold = 10 | ||
emergency_restart_interval = 1m | ||
process_control_timeout = 10 | ||
error_log = /proc/self/fd/2 | ||
|
||
[www] | ||
user = root | ||
group = root | ||
listen = [::]:9000 | ||
chdir = /app | ||
|
||
access.log = /proc/self/fd/1 | ||
|
||
pm = dynamic | ||
pm.max_children = 500 | ||
pm.start_servers = 60 | ||
pm.min_spare_servers = 25 | ||
pm.max_spare_servers = 100 | ||
pm.max_requests = 1000 | ||
|
||
listen.backlog = -1 | ||
rlimit_files = 65536 | ||
rlimit_core = unlimited | ||
catch_workers_output = yes | ||
decorate_workers_output = no | ||
|
||
request_slowlog_timeout = 5s | ||
request_terminate_timeout = 120s | ||
slowlog = /var/log/$pool.log.slow | ||
|
||
pm.status_path = /fpm_status | ||
ping.path = /fpm_ping | ||
ping.response = pong | ||
|
||
clear_env = no |
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