When I only have the Linux system, I do n’t want to install Nginx, PHP, MySQL, but I want to let the project run, what to do, think about it again and again.
Make a dockerfile so that local projects can run in the container!
Please click here to exit full-screen mode:
"Dockerfile FROM php:5.6-apache RUN docker-php-ext-install mysqli ADD project1 /var/www/html "
After editing the dockerfile, generate the image. The command is: docker build -t malina_php_project .
When you see
, it means the image has been generated successfully
" docker run -it -d --name malina_php_project malina_php_project "
进行查看镜像是否处于活动状态 docker ps
在浏览器输入localhost,发现这什么鬼,也不报错也不显示,可以docker logs (容器id)18b429b2ceac 看见ip了
再次在浏览器输入访问:http://x.x.0.2/phpinfo.php,访问到了开心不,激动不
ADD project1 /var/www/html 将项目copy到容器的var/www/html目录下,这里只会把project1下面的内容,project1本身目录不复制
docker exec -it 18b429b2ceac(容器id) /bin/bash
docker run -it -v /宿主机目录:/容器目录 镜像名:镜像标签 docker run -it -d -v /home/malina/project/project1:/var/www/html malina_php_project:latest
The above is the detailed content of How to make the project run when there is only a Linux system?. For more information, please follow other related articles on the PHP Chinese website!