[我正在尝试使我的应用程序成为dockerize,因为我一直在关注官方openresty dockerfile。我系统中的操作系统是Ubuntu 16.04 64位。
我已经使用此cmd拉出了该图像。
docker pull openresty/openresty:1.11.2.3-xenial
现在,我想使用此图像,并希望制作简单的hello world应用程序。为此,我创建了我的工作目录,创建了一个自定义dockerfile并使用该目录构建我的自定义映像。最后,我运行该图像。以下是我的dockerfile内容。
FROM openresty/openresty:1.11.2.3-xenial
EXPOSE 8080
CMD nginx -p `pwd` -c nginx.conf
nginx.conf
worker_processes 1;
error_log stderr notice;
events {
worker_connections 1024;
}
http {
include /usr/local/openresty/nginx/conf/mime.types;
server {
listen 8888;
location / {
default_type text/html;
content_by_lua_file "app.lua";
}
}
}
app.lua
ngx.say('Hello World!')
ngx.exit(200)
Build image
docker build -t user/openresty .
启动容器
docker run rahul/openresty
[当我尝试启动容器时,它给了我类似nginx的错误:无效选项:“ / bin / sh”
我不知道我在朝着正确或错误的方向前进。
更新:
docker run -it -p 8888:80 -v /home/software/docker/openresty:/usr/local/openresty/nginx/html:ro openresty/openresty:1.11.2.3-xenial
我刚刚使用了此CLI,它开始显示我创建的index.html。再次,我尝试使用下面的CLI链接我的自定义nginx.conf,但它不起作用。
docker run -it -p 8888:8888 -v /home/software/docker/openresty:/usr/local/openresty/nginx/html:ro -v /home/software/docker/openresty/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf:ro openresty/openresty:1.11.2.3-xenial
docker run -it -p 8888:8888 -v $(pwd):/ app openresty / openresty:1.11.2.3-xenial -p / app -c nginx.conf
使用以下命令,它开始工作,但是任何人都可以解释一下吗?
docker run -it -p 8888:8888 -v $(pwd):/app openresty/openresty:1.11.2.3-xenial -p /app -c nginx.conf