-
Notifications
You must be signed in to change notification settings - Fork 113
Add Dockerfile php8.1 #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
BehroozBvk
wants to merge
3
commits into
devopshobbies:main
Choose a base branch
from
BehroozBvk:php-dockerfile
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,96 @@ | ||
FROM alpine:3.16 as stage | ||
|
||
LABEL Maintainer="BehroozValikhani | https://t.me/BvkDev" \ | ||
Description="Lightweight container with Nginx 1.22 & PHP-FPM 8.1 based on Alpine Linux." | ||
|
||
ARG ALPINE_VERSION=3.16 | ||
|
||
RUN echo https://repo.iut.ac.ir/repo/alpine/v$ALPINE_VERSION/main > /etc/apk/repositories | ||
RUN echo https://repo.iut.ac.ir/repo/alpine/v$ALPINE_VERSION/community >> /etc/apk/repositories | ||
|
||
# Install packages and remove default server definition | ||
RUN apk --no-cache add php81 \ | ||
php81-common \ | ||
php81-fpm \ | ||
php81-pdo \ | ||
php81-opcache \ | ||
php81-zip \ | ||
php81-phar \ | ||
php81-iconv \ | ||
php81-cli \ | ||
php81-curl \ | ||
php81-openssl \ | ||
php81-mbstring \ | ||
php81-tokenizer \ | ||
php81-fileinfo \ | ||
php81-json \ | ||
php81-xml \ | ||
php81-xmlwriter \ | ||
php81-simplexml \ | ||
php81-dom \ | ||
php81-pdo_mysql \ | ||
php81-pdo_sqlite \ | ||
php81-tokenizer \ | ||
php81-pecl-redis \ | ||
php81-posix \ | ||
php81-pcntl \ | ||
php81-bcmath \ | ||
php81-ctype \ | ||
php81-gmp \ | ||
php81-gd \ | ||
php81-iconv \ | ||
php81-simplexml \ | ||
php81-xmlreader \ | ||
php81-zlib \ | ||
php81-intl \ | ||
php81-ctype \ | ||
nginx supervisor curl tzdata nano | ||
|
||
# Symlink php81 => php | ||
RUN ln -s /usr/bin/php81 /usr/bin/php | ||
BehroozBvk marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# Install PHP tools | ||
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \ | ||
mkdir -p /.composer/cache/ && \ | ||
rm -rf composer-setup.php | ||
|
||
# Configure nginx | ||
COPY config/nginx.conf /etc/nginx/nginx.conf | ||
|
||
# Configure PHP-FPM | ||
COPY config/fpm-pool.conf /etc/php81/php-fpm.d/www.conf | ||
COPY config/php.ini /etc/php81/conf.d/custom.ini | ||
|
||
# Configure supervisord | ||
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
|
||
RUN set -x \ | ||
&& adduser -u 1000 -D -S -G www-data www-data | ||
|
||
# Setup document root | ||
RUN mkdir -p /var/www/html | ||
|
||
# Make sure files/folders needed by the processes are accessable when they run under the nobody user | ||
RUN chown -R www-data.www-data /var/www/html && \ | ||
chown -R www-data.www-data /run && \ | ||
chown -R www-data.www-data /var/lib/nginx && \ | ||
chown -R www-data.www-data /var/log/nginx && \ | ||
chown -R www-data.www-data /.composer/ | ||
|
||
# Switch to use a non-root user from here on | ||
USER www-data | ||
|
||
# Add application | ||
WORKDIR /var/www/html | ||
COPY --chown=www-data ./ /var/www/html/ | ||
|
||
RUN chmod 755 entrypoint.sh | ||
|
||
# Expose the port nginx is reachable on | ||
EXPOSE 80 | ||
|
||
# Define the entry point that tries to enable newrelic | ||
# ENTRYPOINT ["entrypoint.sh"] | ||
|
||
# Let supervisord start nginx & php-fpm | ||
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] |
This file contains hidden or 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,58 @@ | ||
[global] | ||
; Log to stderr | ||
error_log = /dev/stderr | ||
daemonize = no | ||
|
||
[www] | ||
; The address on which to accept FastCGI requests. | ||
; Valid syntaxes are: | ||
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on | ||
; a specific port; | ||
; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on | ||
; a specific port; | ||
; 'port' - to listen on a TCP socket to all addresses | ||
; (IPv6 and IPv4-mapped) on a specific port; | ||
; '/path/to/unix/socket' - to listen on a unix socket. | ||
; Note: This value is mandatory. | ||
;listen = 127.0.0.1:9000 | ||
listen = /var/run/php-fpm.sock | ||
|
||
; Enable status page | ||
pm.status_path = /fpm-status | ||
|
||
; Ondemand process manager | ||
pm = static | ||
|
||
; The number of child processes to be created when pm is set to 'static' and the | ||
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'. | ||
; This value sets the limit on the number of simultaneous requests that will be | ||
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork. | ||
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP | ||
; CGI. The below defaults are based on a server without much resources. Don't | ||
; forget to tweak pm.* to fit your needs. | ||
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand' | ||
; Note: This value is mandatory. | ||
pm.max_children = 100 | ||
|
||
; The number of seconds after which an idle process will be killed. | ||
; Note: Used only when pm is set to 'ondemand' | ||
; Default Value: 10s | ||
;pm.process_idle_timeout = 10s; | ||
|
||
; The number of requests each child process should execute before respawning. | ||
; This can be useful to work around memory leaks in 3rd party libraries. For | ||
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS. | ||
; Default Value: 0 | ||
pm.max_requests = 1000 | ||
|
||
; Make sure the FPM workers can reach the environment variables for configuration | ||
clear_env = no | ||
|
||
; Catch output from PHP | ||
catch_workers_output = yes | ||
|
||
; Remove the 'child 10 said into stderr' prefix in the log and only show the actual message | ||
decorate_workers_output = no | ||
|
||
; Enable ping page to use in healthcheck | ||
ping.path = /fpm-ping |
This file contains hidden or 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,126 @@ | ||
#user nobody; | ||
worker_processes 1; | ||
|
||
#error_log logs/error.log; | ||
#error_log logs/error.log notice; | ||
#error_log logs/error.log info; | ||
|
||
#pid logs/nginx.pid; | ||
|
||
|
||
events { | ||
worker_connections 1024; | ||
} | ||
|
||
|
||
http { | ||
include mime.types; | ||
default_type application/octet-stream; | ||
|
||
#log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | ||
# '$status $body_bytes_sent "$http_referer" ' | ||
# '"$http_user_agent" "$http_x_forwarded_for"'; | ||
|
||
#access_log logs/access.log main; | ||
|
||
sendfile on; | ||
#tcp_nopush on; | ||
|
||
#keepalive_timeout 0; | ||
keepalive_timeout 65; | ||
|
||
#gzip on; | ||
|
||
server { | ||
listen [::]:80 default_server; | ||
listen 80 default_server; | ||
server_name _; | ||
root /var/www/html; | ||
|
||
add_header X-Frame-Options "SAMEORIGIN"; | ||
add_header X-Content-Type-Options "nosniff"; | ||
|
||
index index.php index.html; | ||
|
||
charset utf-8; | ||
|
||
location / { | ||
try_files $uri $uri/ /index.php?$query_string; | ||
} | ||
|
||
location = /favicon.ico { access_log off; log_not_found off; } | ||
location = /robots.txt { access_log off; log_not_found off; } | ||
|
||
error_page 404 /index.php; | ||
|
||
location ~ \.php$ { | ||
fastcgi_pass unix:/var/run/php-fpm.sock; | ||
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; | ||
include fastcgi_params; | ||
} | ||
|
||
location ~ /\.(?!well-known).* { | ||
deny all; | ||
} | ||
|
||
# proxy the PHP scripts to Apache listening on 127.0.0.1:80 | ||
# | ||
#location ~ \.php$ { | ||
# proxy_pass http://127.0.0.1; | ||
#} | ||
|
||
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 | ||
# | ||
#location ~ \.php$ { | ||
# root html; | ||
# fastcgi_pass 127.0.0.1:9000; | ||
# fastcgi_index index.php; | ||
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; | ||
# include fastcgi_params; | ||
#} | ||
|
||
# deny access to .htaccess files, if Apache's document root | ||
# concurs with nginx's one | ||
# | ||
#location ~ /\.ht { | ||
# deny all; | ||
#} | ||
} | ||
|
||
|
||
# another virtual host using mix of IP-, name-, and port-based configuration | ||
# | ||
#server { | ||
# listen 8000; | ||
# listen somename:8080; | ||
# server_name somename alias another.alias; | ||
|
||
# location / { | ||
# root html; | ||
# index index.html index.htm; | ||
# } | ||
#} | ||
|
||
|
||
# HTTPS server | ||
# | ||
#server { | ||
# listen 443 ssl; | ||
# server_name localhost; | ||
|
||
# ssl_certificate cert.pem; | ||
# ssl_certificate_key cert.key; | ||
|
||
# ssl_session_cache shared:SSL:1m; | ||
# ssl_session_timeout 5m; | ||
|
||
# ssl_ciphers HIGH:!aNULL:!MD5; | ||
# ssl_prefer_server_ciphers on; | ||
|
||
# location / { | ||
# root html; | ||
# index index.html index.htm; | ||
# } | ||
#} | ||
|
||
} |
This file contains hidden or 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,24 @@ | ||
[PHP] | ||
file_uploads = On | ||
upload_max_filesize = 256M | ||
post_max_size = 256M | ||
;extension=mongodb.so | ||
|
||
|
||
[Date] | ||
date.timezone="UTC" | ||
|
||
[opcache] | ||
opcache.enable=0 | ||
opcache.memory_consumption=512 | ||
opcache.interned_strings_buffer=64 | ||
opcache.max_accelerated_files=50000 | ||
opcache.max_wasted_percentage=15 | ||
opcache.validate_timestamps=0 | ||
opcache.revalidate_freq=0 | ||
opcache.save_comments=1 | ||
opcache.fast_shutdown=1 | ||
opcache.mmap_base=0x20000000 | ||
opcache.file_cache_fallback=1 | ||
|
||
memory_limit = -1; |
This file contains hidden or 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,34 @@ | ||
[supervisord] | ||
nodaemon=true | ||
logfile=/dev/null | ||
logfile_maxbytes=0 | ||
pidfile=/run/supervisord.pid | ||
|
||
[program:php-fpm] | ||
command=php-fpm81 -F | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 | ||
autorestart=false | ||
startretries=0 | ||
|
||
[program:nginx] | ||
command=nginx -g 'daemon off;' | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 | ||
autorestart=false | ||
startretries=0 | ||
|
||
#[program:lumen] | ||
#process_name=%(program_name)s_%(process_num)02d | ||
#command=php /var/www/html/artisan queue:work redis --sleep=1 --tries=3 | ||
#numprocs=1 | ||
#user=www-data | ||
#stdout_logfile=/tmp/lumen-worker.log | ||
#stderr_logfile=/tmp/lumen-workerError.log | ||
#autorestart=true | ||
#startretries=0 | ||
#priority=200 |
This file contains hidden or 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,18 @@ | ||
#!/bin/sh | ||
|
||
# echo "Composer dump autoload" | ||
# composer dump-autoload | ||
|
||
# echo "Run Migration command..." | ||
# php artisan migrate --force | ||
|
||
# echo "Run Seeder command..." | ||
# php artisan db:seed --force | ||
|
||
# echo "Run route clear command..." | ||
# php artisan route:clear | ||
|
||
# echo "Run storage link..." | ||
# php artisan storage:link --force | ||
|
||
/usr/bin/supervisord -c "/etc/supervisor/conf.d/supervisord.conf" |
This file contains hidden or 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 +1,11 @@ | ||
php | ||
# PHP Dockerfile template | ||
|
||
# Just run ! | ||
|
||
```sh | ||
docker build -t php8.1 . && docker run -d --name docker-php8.1 -p 80:80 php8.1 | ||
``` | ||
## Maintainers | ||
|
||
- [Behrooz Valikhani](https://t.me/BvkDev) | ||
- Esmaeil Shadkam |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.