root@tr-desktop:/home/tr# cd nginx/
root@tr-desktop:/home/tr/nginx# ls
Dockerfile
root@tr-desktop:/home/tr/nginx# cat Dockerfile
# 使用官方的 Nginx 镜像
FROM nginx:latest
# 复制自定义的 Nginx 配置文件到容器
#COPY ./nginx.conf /etc/nginx/nginx.conf
# 复制静态文件到容器
#COPY ./html /usr/share/nginx/html
# 暴露容器的端口
EXPOSE 80
# 启动 Nginx 服务
CMD ["nginx", "-g", "daemon off;"]
root@tr-desktop:/home/tr/nginx#
docker build -f /home/tr/nginx/Dockerfile -t nginx .