docker 安装nginx
1、下载镜像
docker pull nginx
2、启动nginx容器
docker run -d --name nginx -p 80:80 nginx
3、进入容器
docker exec -it f584fb22e43b bash
4、更新apt-get
apt-get update
5、安装vim
apt-get install vim
6、编辑配置文件
vim /etc/nginx/conf.d/default.conf
7、添加代理信息
location /testGet {
proxy_pass http://192.168.206.1:8888
}