docker搭建nginx-php环境

首先,创建一个 Dockerfile 文件,内容如下:

FROM php:7.4-fpm

RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list
RUN sed -i 's/security.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list

# 安装 Nginx
RUN apt-get update && apt-get install -y nginx

# 配置 Nginx
RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf

# 复制 Nginx 配置文件
COPY nginx.conf /etc/nginx/conf.d/default.conf

# 复制 PHP 文件到容器中
COPY index.php /var/www/html/index.php

# 启动 Nginx 和 PHP-FPM 服务
CMD service php7.4-fpm start && nginx -g 'daemon off;'


然后,创建一个 nginx.conf 文件,用于配置Nginx服务器:

server {
listen 80;
root /var/www/html;
index index.php index.html index.htm;

location / {
try_files $uri $uri/ =404;
}

location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}

最后,创建一个 index.php 文件来测试PHP环境:
<?php
phpinfo();


完成以上文件后,运行以下命令来构建并启动容器:
docker build -t nginx-php .
docker run -d -p 8080:80 nginx-php

docker exec -it bab5b9087fa6 /bin/sh
docker exec -it php56fpm /bin/bash

查看当前有些什么images
docker images

要删除全部image的话
docker rmi $(docker images -q) -f

查看所有容器,包括关闭的
docker ps -a

如果想要删除所有container的话再加一个指令
docker rm $(docker ps -a -q) -f

docker stop 容器id
docker start 容器id
docker restart 容器id


#基于docker-compose.yml 的启动
docker-compose up -d
docker-compose -f docker-compose-swoole.yml up -d

#--remove-orphans: 删除服务中没有在compose文件中定义的容器。
docker-compose up -d --build --remove-orphans
docker-compose restart
docker-compose start
docker-compose stop

#通过 docker compose ps 命令查看当前项目中所有容器的状态
docker compose ps


使用docker network ls可以查看网络列表

 

现在,你可以通过浏览器访问 http://localhost:8080 查看你的 PHP 信息页面,或者根据你的服务器配置进行相应的地址访问。

 

修改docker源
vim /etc/docker/daemon.json

{
"registry-mirrors": [
"https://ustc-edu-cn.mirror.aliyuncs.com/",
"https://ccr.ccs.tencentyun.com/",
"https://docker.m.daocloud.io/"
]
}


{
"registry-mirrors": [
"https://docker.m.daocloud.io",
"https://dockerproxy.com",
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"https://hub-mirror.c.163.com",
"https://hub.uuuadc.top",
"https://docker.anyhub.us.kg",
"https://dockerhub.jobcher.com",
"https://dockerhub.icu",
"https://docker.ckyl.me",
"https://docker.awsl9527.cn",
"https://mirror.baidubce.com"
]
}


重新加载docker的配置文件
systemctl daemon-reload

重启docker
systemctl restart docker

查看dock info是否修改成功
如果修改成功,可以在info中查看到修改后的源:
docker info

 

docker-compose参考:https://blog.csdn.net/jkzyx123/article/details/141636683

posted @ 2024-12-14 15:15  河北大学-徐小波  阅读(12)  评论(0编辑  收藏  举报