您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Docker如何安裝PHP,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
學習
方法一、docker pull php
查找Docker Hub上的php鏡像
[root@huixuan nginx]# docker pull webdevops/php-nginx
Using default tag: latest
Trying to pull repository docker.io/webdevops/php-nginx ...
latest: Pulling from docker.io/webdevops/php-nginx
1be7f2b886e8: Pull complete
6fbc4a21b806: Pull complete
c71a6f8e1378: Pull complete
4be3072e5a37: Pull complete
06c6d2f59700: Pull complete
5c1c30789448: Pull complete
42eeae6547fc: Pull complete
3ff6b06497b0: Pull complete
60c69a4834cc: Pull complete
cbb835cfffc0: Pull complete
604f67c351eb: Pull complete
072984b59472: Pull complete
943570e2b1d3: Pull complete
1e35c99925af: Pull complete
fbb001c74aae: Pull complete
Digest: sha256:38b9e5a8072f83ae2e7ad47554f58c8ca4c4308adb3909070ad75deb761bb898
Status: Downloaded newer image for docker.io/webdevops/php-nginx:latest
[root@huixuan nginx]#
使用webdevops/php-nginx鏡像
運行容器
[root@huixuan nginx]# docker run -p 9000:9000 --name myphp -d webdevops/php-nginx
458820a216542e70d7deaac772713a5149f82be6d35c1e6aafdb5edd6e1ca97e
[root@huixuan nginx]#
命令說明:
-p 9000:9000 :將容器的9000端口映射到主機的9000端口
--name myphp-fpm :將容器命名為myphp-fpm
-v ~/nginx/www:/www :將主機中項目的目錄www掛載到容器的/www
-v $PWD/conf:/usr/local/etc/php :將主機中當前目錄下的conf目錄掛載到容器的/usr/local/etc/php
-v $PWD/logs:/phplogs :將主機中當前目錄下的logs目錄掛載到容器的/phplogs
查看容器啟動情況
[root@huixuan nginx]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
458820a21654 webdevops/php-nginx "/entrypoint super..." 46 seconds ago Up 44 seconds 80/tcp, 443/tcp, 0.0.0.0:9000->9000/tcp myphp
[root@huixuan nginx]#
通過瀏覽器訪問phpinfo()
PS:此處是通過nginx+php實現web服務,nginx配置文件的fastcgi_pass應該配置為webdevops/php-nginx容器的IP。
fastcgi_pass 172.17.0.4:9000;
容器IP的查方法
docker inspect 容器ID或容器名 |grep '"IPAddress"'
以上就是Docker如何安裝PHP,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。