English | 简体中文
名称 | 版本 | Docker 标签 |
---|---|---|
PHP | 8.4.x | latest / 8.4 |
PHP | 8.3.x | 8.3 |
PHP | 8.2.x | 8.2 |
PHP | 8.1.x | 8.1 |
Docker tag | PHP | NGINX |
---|---|---|
8.0.300 | 8.0.30 | 1.24.0 |
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 pull jetsung/nginx-php:latest
docker pull ghcr.io/jetsung/nginx-php:latest
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
配置信息。
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