一、拉取镜像运行容器
docker run -d --name nginx-server -v /opt/nginx-server:/home/work/tools/nginx/dist/html:ro nginx
-d 后台运行
–name 为这个容器命名
-v 挂载,目录映射
/opt/nginx-server:/home/work/tools/nginx/dist/html 容器内地址:本地地址 映射关系
:ro 只读
nginx 镜像名称
二、查看nginx运行端口
docker inspect 容器id | grep "IPAddress"
三、访问 curl http://172.17.0.2
目前仅自己的服务器可访问
四、暴露端口运行
docker run -d -p 80:80 --name nginx-server -v /opt/nginx-server:/home/work/tools/nginx/dist/html:ro nginx
-d 后台运行
-p 挂载,端口映射 宿主机端口:容器端口
–name 为这个容器命名
-v 挂载,目录映射
/opt/nginx-server:/home/work/tools/nginx/dist/html 容器内地址:宿主机地址 映射关系
:ro 只读
nginx 镜像名称
外界可以访问了
不可以的话就
vim /etc/sysctl.conf 添加一句话
net.ipv4.ip_forward = 1
然后输入 sysctl -p 命令
改一下内核
五、修改配置文件
挂载配置文件,需要创建一个nginx容器,把配置文件复制出来修改后使用。
# docker cp nginxwebcontainername:/etc/nginx/nginx.conf /opt/nginxcon/
修改后即可使用
# ls /opt/nginxcon/nginx.conf
/opt/nginxcon/nginx.conf
# docker run -d \
-p 82:80 --name nginx-server-conf \
-v /opt/nginx-server-conf:/usr/share/nginx/html:ro \
-v /opt/nginxcon/nginx.conf:/etc/nginx/nginx.conf:ro \
nginx
76251ec44e5049445399303944fc96eb8161ccb49e27b673b99cb2492009523c
个人实践
docker run -d -p 80:8080 --name nginx-resume -v /home/work/project/resume/dist:/usr/share/nginx/html:ro -v /home/work/project/resume/nginxConf/nginx.conf:/etc/nginx/nginx.conf:ro nginx
-d 后台运行
-p 端口挂载 把主机80端口和nginx容器的8080做映射
–name nginx-resume 给这个容器命名为nginx-resume
-v /home/work/project/resume/dist:/usr/share/nginx/html 目录映射 本机的/home/work/project/resume/dist目录映射到服务器的/usr/share/nginx/html目录
:ro 只读
-v /home/work/project/resume/nginxConf/nginx.conf:/etc/nginx/nginx.conf 文件映射 本机的 /home/work/project/resume/nginxConf/nginx.conf文件映射到服务器的/etc/nginx/nginx.conf文件
:ro只读
nginx 启动的镜像
我的nginx.conf
user nginx;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8080; #前端被访问的地址
server_name localhost;
location / {
root /usr/share/nginx/html; #前端dist路径
index index.html index.htm;
}
location /api/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://88.88.88.88:8090/; #反向代理的后端服务器地址
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}