jeijei4 / docker-nginx-php

Nginx PHP for Docker

Home Page:https://nginx-php.222029.xyz

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nginx and PHP for Docker

English | 简体中文

Version

Name Version Docker tag
PHP 8.3.x latest / 8.3
PHP 8.2.x 8.2
PHP 8.1.x 8.1

EOL

Docker tag PHP NGINX
8.0.300 8.0.30 1.24.0

Include extensions

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

Custom extension

Container Hub

  1. Docker Hub: nginx-php
docker pull jetsung/nginx-php:latest
  1. GitHub Packages: nginx-php
docker pull ghcr.io/jetsung/nginx-php:latest

Manual

Build

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 .

Installation

Pull the image from the docker index rather than downloading the git repo. This prevents you having to build the image on every docker host.

docker pull jetsung/nginx-php:latest

Running

To simply run the container:

docker run --name nginx -p 8080:80 -d jetsung/nginx-php

You can then browse to http://\<docker_host\>:8080 to view the default install files.

docker-compose.yml

version: "3"
services:
  nginx-php:
    image: jetsung/nginx-php:latest
    ports:
      - "38080:80"

Command line tools

Use docker exec {CONTAINER ID} {COMMAND}

# Current process
docker exec {CONTAINER ID} ps -ef
# Current PHP version
docker exec {CONTAINER ID} php --version

# supervisord
## HELP
docker exec {CONTAINER ID} supervisorctl --help
## STOP, START, STATUS (stop/start/status)
docker exec {CONTAINER ID} supervisorctl stop all
## STOP NGINX / PHP
docker exec {CONTAINER ID} supervisorctl stop nginx/php-fpm

# Container not started
## PHP version
docker run --rm -it jetsung/nginx-php:latest php --version

## NGINX version
docker run --rm -it jetsung/nginx-php:latest nginx -v

About

Nginx PHP for Docker

https://nginx-php.222029.xyz

License:Apache License 2.0


Languages

Language:Shell 68.1%Language:Dockerfile 24.7%Language:HTML 6.8%Language:PHP 0.4%