1.拉取镜像

docker  pull  skiychan/nginx-php7

2.运行

docker run --name nginxphp   \

-p 8080:80 \

-v /data/www/:/data/www \

-v /data/nginx/conf/nginx.conf:/usr/local/nginx/conf/nginx.conf \

-d skiychan/nginx-php7

3根据需求安装扩展(由于公司使用mongo数据库)

docker exec -it nginxphp /bin/bash

#以下操作在容器进行

cd /usr/local

curl -Lk https://pecl.php.net/get/mongodb-1.4.2.tgz
tar xf mongodb-1.4.2.tgz
cd /usr/local/mongodb-1.4.2

/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

4.退出容器(Ctrl+D)并重启,当然也可以在容器内重启php-fpm

docker restart  nginxphp