一直听说Docker比较厉害,但是一直没有了解,今天在哔哩哔哩上刷了一下入门课后,简直发现新大陆般,Docker的强大真的了解太晚了。这篇使用Docker搭建php7环境的文章需要一点入门知识。下面开始。
首先安装Docker,无论你是Windows还是Linux、MocOS都可以。安装Docker自行百度。
访问https://hub.docker.com即可,它是镜像大仓库。
输入:
1 |
docker pull nginx |
1 |
docker pull php:7.1.30-fpm |
新建几个文件夹,分别用来映射:网站根目录、nginx配置文件、日志文件
1 |
mkdir -p ~/nginx/www ~/nginx/logs ~/nginx/conf |
在新建的www目录中新建:index.php
用来检测php环境是否搭建成功:
1 2 3 |
<?php phpinfo(); ?> |
在nginx配置文件目录conf
下新建:test-php.conf
,后缀是.conf
即可:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm index.php; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { fastcgi_pass php:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /www/$fastcgi_script_name; include fastcgi_params; } } |
这是php最常见的默认配置,默认就好。
1 |
docker run --name myphp7 -v ~/nginx/www:/www -d php:7.1.30-fpm |
1 |
docker run --name php-nginx -p 80:80 -v ~/Documents/dock/nginx/www:/usr/share/nginx/html -v ~/Documents/dock/nginx/conf:/etc/nginx/conf.d --link myphp7:php -d nginx |
这是指定端口,网站根目录,网站配置文件目录,其实没有指定网站日志目录,不知道你有没有看出来,哈哈哈!
输入docker ps
看看:
访问:127.0.0.1
当然这是完全顺利的结果,需要前期不断尝试,刚刚试了很多坑才明白其中的一些细节。弄明白后使用觉得Docker部署真的是方便快捷,沙盒机制很干净。
挖个小坑,接下来继续研究,Flask+uwsgi+nginx使用docker需要怎么操作部署。
作者:我的袜子都是洞
链接:https://www.jianshu.com/p/43037ce40b00
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。