这篇文章主要讲解了“如何利用github上的dockerfile快速创建LAMP开发环境”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何利用github上的dockerfile快速创建LAMP开发环境”吧!
创建mysql镜像及运行容器
git clone https://github.com/tutumcloud/tutum-docker-mysqldocker build -t tutum/mysql 5.6/docker run -d MYSQL_PASS="mypass" --name db tutum/mysql
创建php apche镜像及运行容器
git clone https://github.com/tutumcloud/tutum-docker-phpdocker build -t tutum/apache-php .docker run -d -p 80:80 --link db:mydb -v /app:/app tutum/apache-php
最后将我的php应用复制到本地/ap p目录中。
curl http://localhost/
*注意mysql容器每次启动的ip是动态分派的。php应用中mysql的ip地址为映射的别名mydb,如需要查看可通过如下命令查看
docker exec db ifconfig
感谢各位的阅读,以上就是“如何利用github上的dockerfile快速创建LAMP开发环境”的内容了,经过本文的学习后,相信大家对如何利用github上的dockerfile快速创建LAMP开发环境这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!