This is an OpenResty docker base image using Alpine Linux and based on the ficusio/openresty docker image with just few modifications to make it even more basic, actually it won't be useful unless you set it as a base image and extend it using the FROM
instruction.
This container have been build for being used as a base image and extend it, so you'll need to first EXPOSE 8080
or the port you specify on your nginx.conf
, file that you'll need as well as to COPY/ADD
when extending the base image, like: for example:
FROM zot24/openresty
RUN rm -rf conf/* html/*
COPY nginx $NGINX_PREFIX/
EXPOSE 8080
Some util resources about docker + images + alpine + being smart :)
- Israel Sotomayor - Initial work - zot24
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details