Nginx-1.10.3 镜像集成模块列表:
- pagespeed
- luaJIT
- lua-nginx-module
- nginx_upstream_check_module
- nginx_cache_purge_module
- nginx_devel_kit
Dockerfile文件的ARG
参数可控制开启/关闭
相应功能
ARG WITH_DEBUG=false
ARG WITH_NDK=true
ARG WITH_LUA=true
ARG WITH_PURGE=true
ARG WITH_UPSTREAM_CHECK=true
自动化构建镜像的可用Dockerhub和推荐的安装方法
docker pull eswork/nginx:1.10.3
或者你可以自己构建镜像
docker build -t eswork/nginx github.com/eswork/docker-nginx
运行nginx:
docker run --name nginx -d \
-p 80:80 --restart=always \
eswork/nginx
或者您可以使用示例docker-compose.yml文件启动容器
自定义您的配置文件覆盖容器默认的/etc/nginx/nginx.conf
配置
docker run --name nginx -d \
-v /some/nginx.conf:/etc/nginx/nginx.conf:ro \
eswork/nginx
挂载您自己的sites-enabled
目录到/etx/nginx/sites-enabled
docker run --name nginx -d \
-v /some/nginx.conf:/etc/nginx/nginx.conf:ro \
-v /srv/docker/nginx/sites-enabled:/etc/nginx/sites-enabled \
eswork/nginx
重新加载的NGINX配置使用kill -s HUP
发送到容器上
docker kill -s HUP nginx
访问Nginx日志位于/var/log/nginx
docker exec -it nginx tail -f /var/log/nginx/access.log
docker run -p 80:80 --name nginx -d \
eswork/nginx nginx -c /etc/nginx/test.conf
先访问http://localhost/index.html
,然后再次访问http://localhost/purge/index.html
会看到效果
其实访问http://localhost/index.html
地址已经使用反向代理到http://localhost:8045/index.html
页面上
访问http://localhost/lua
页面将会显示hello lua.
访问http://localhost/status1
页面将会显示stub状态
访问http://localhost/status2
页面将会显示upstream状态