# docker-images **Repository Path**: baijunyao/docker-images ## Basic Information - **Project Name**: docker-images - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2019-08-18 - **Last Updated**: 2026-07-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Docker Images Some Dockerfile ## PHP 7.1 ~ 8.5 DockerHub: https://hub.docker.com/r/baijunyao/php ### Local Feature - Extends Base - Install xdebug extensions - Add `post_max_size=20M` and `upload_max_filesize=20M` to php.ini Pull PHP FPM image, e.g. ```bash docker pull baijunyao/php:8.0-fpm-local ``` Pull PHP CLI image, e.g. ```bash docker pull baijunyao/php:8.0-cli-local ``` ### Production Feature - Extends Base - Install opcache extensions - Add `post_max_size=20M` and `upload_max_filesize=20M` to php.ini Pull PHP FPM image, e.g. ```bash docker pull baijunyao/php:8.0-fpm-production ``` Pull PHP CLI image, e.g. ```bash docker pull baijunyao/php:8.0-cli-production ``` ## MySQL 8.0 DockerHub: https://hub.docker.com/r/baijunyao/mysql ### Local Feature - Add `default-authentication-plugin=mysql_native_password` and `bind-address=0.0.0.0` to my.cnf Pull image ```bash docker pull baijunyao/mysql:8.0-local ``` ### Production Feature - Add `default-authentication-plugin=mysql_native_password` to my.cnf Pull image ```bash docker pull baijunyao/mysql:8.0-production ``` # MySQL Client DockerHub: https://hub.docker.com/r/baijunyao/mysql-client Pull image ```bash docker pull baijunyao/mysql-client:1.0 ``` ## NGINX 1.7、1.19、1.29 DockerHub: https://hub.docker.com/r/baijunyao/nginx Feature - Remove /etc/nginx/conf.d/default.conf Pull image ```bash docker pull baijunyao/nginx:1.29 ``` ## Elasticsearch 7.4、7.6 DockerHub: https://hub.docker.com/r/baijunyao/elasticsearch Feature - Install elasticsearch-analysis-ik Pull image ```bash docker pull baijunyao/elasticsearch:7.4 docker pull baijunyao/elasticsearch:7.6 ``` ## Alpine 3.12、3.23 DockerHub: https://hub.docker.com/r/baijunyao/alpine Feature - Install ca-certificates and tzdata - Set default timezone to Asia/Shanghai Pull image ```bash docker pull baijunyao/alpine:3.12 docker pull baijunyao/alpine:3.23 ``` ## OSSUtil 1.7.0、2.3.0 DockerHub: https://hub.docker.com/r/baijunyao/ossutil Feature - Based on baijunyao/alpine - Install Alibaba Cloud OSS command line tool Pull image ```bash docker pull baijunyao/ossutil:1.7.0 docker pull baijunyao/ossutil:2.3.0 ``` ## Fluentd 1.11 DockerHub: https://hub.docker.com/r/baijunyao/fluentd Feature - Install fluent-plugin-parser-cri Pull image ```bash docker pull baijunyao/fluentd:1.11 ``` ## pnpm 10 DockerHub: https://hub.docker.com/r/baijunyao/pnpm Feature - Use npmmirror Pull image ```bash docker pull baijunyao/pnpm:10 ```