Nginx and PHP for Docker
https://jihulab.com/jetsung/docker-nginx-php
https://github.com/jetsung/docker-nginx-php
包含扩展
bcmath,Core,ctype,curl,date,dom,exif,fileinfo,filter,ftp,gd,gettext,hash,iconv,intl,json,libxml,mbstring,mysqli,mysqlnd,openssl,pcntl,pcre,PDO,pdo_mysql,pdo_pgsql,pdo_sqlite,pgsql,Phar,posix,redis,Reflection,session,shmop,SimpleXML,soap,sockets,sodium,SPL,sqlite3,standard,sysvsem,tokenizer,xml,xmlreader,xmlwriter,xsl,zip,zlib
Docker Hub
jetsung/nginx-php: https://hub.docker.com/r/jetsung/nginx-php
文档使用说明: https://nginx-php.222029.xyz
构建
git clone https://github.com/jetsung/docker-nginx-php.git
cd nginx-php
docker build --build-arg PHP_VERSION="8.1.1" \
--build-arg NGINX_VERSION="1.20.0" \
-t nginx-php:8.1 \
-f ./Dockerfile .
安装使用
从 Docker 拉取镜像
docker pull jetsung/nginx-php:latest
启动
使用镜像启动基础容器
docker run --name nginx -p 8080:80 -d jetsung/nginx-php
你可以通过浏览器访问 http://\<docker_host\>:8080
查看 PHP
配置信息。
docker-compose.yaml
version: '3'
services:
nginx-php:
image: jetsung/nginx-php:latest
ports:
- "38080:80"
命令行使用
使用 docker exec {CONTAINER ID} {COMMAND}
# 查看当前进程
docker exec {CONTAINER ID} ps -ef
# 查看当前 PHP 版本
docker exec {CONTAINER ID} php --version
# supervisord
## 帮助
docker exec {CONTAINER ID} supervisorctl --help
## 停止、启动、状态 (stop/start/status)
docker exec {CONTAINER ID} supervisorctl stop all
## 停止 NGINX / PHP
docker exec {CONTAINER ID} supervisorctl stop nginx/php-fpm
# 未启动容器
## 查看 PHP 版本
docker run --rm -it jetsung/nginx-php:latest php --version
## 查看 NGINX 版本
docker run --rm -it jetsung/nginx-php:latest nginx -v