upgrade openresty image to ubuntu 18

This commit is contained in:
Karol Wypchlo 2021-01-08 13:47:30 +01:00
parent 83d2aa396e
commit 1a9e4f1a4d
2 changed files with 10 additions and 1 deletions

View File

@ -61,7 +61,9 @@ services:
- nginx
nginx:
image: openresty/openresty:1.15.8.3-2-xenial
build:
context: ./docker/nginx
dockerfile: Dockerfile
container_name: nginx
restart: unless-stopped
logging: *default-logging

7
docker/nginx/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM openresty/openresty:1.19.3.1-2-bionic
# RUN apt-get update -qq && apt-get install cron logrotate -qq
# RUN luarocks install luasocket
# CMD ["sh", "-c", "service cron start;", "/usr/local/openresty/bin/openresty -g daemon off;"]
CMD ["/usr/local/openresty/bin/openresty", "-g", "daemon off;"]