Openresty layer for using the openresty web platform
303
Dockerfile links1.9.15-alpine, (jessegreathouse/openresty:1.9.15-alpine)4.4.7-alpine, (jessegreathouse/openresty-node:4.4.7-alpine)6.2.2-alpine, (jessegreathouse/openresty-node:6.2.2-alpine)6.3.0-alpine, (jessegreathouse/openresty-node:6.3.0-alpine)7.0.7-alpine, (jessegreathouse/openresty-php:7.0.7-alpine)7.0.7-minimal-alpine, (jessegreathouse/openresty-php:7.0.7-minimal-alpine)7.0.7-node-4.4.7-alpine, (jessegreathouse/openresty-node-php:7.0.7-node-4.4.7-alpine)7.0.7-node-6.2.2-alpine, (jessegreathouse/openresty-node-php:7.0.7-node-6.2.2-alpine)7.0.7-node-6.3.0-alpine, (jessegreathouse/openresty-node-php:7.0.7-node-6.3.0-alpine)jessegreathouse/openrestyjessegreathouse/openresty-nodejessegreathouse/openresty-phpjessegreathouse/openresty-node-phpThe appeal to this openresty-docker distro is the application layout, and layering in of PHP, Node.Js or both. A sensible project layout where everything stems from the root /app folder. With this layout you can feel confident and truly have mastery over the configuration of your project.
What this is not,is an image to run your app with zero configuration. The image comes with a generic nginx (php, php-fpm, supervisor) configuration, however even if you can manage to use these generic configurations, you probably shouldn't. See the Next section for more information.
This image provides a directory structure in which everything must stem from the root folder: /app.
The structure is as follows:
The bin folder: /app/bin is added to $PATH and will have symlinks to relevant binaries:
This image expects you to add your own necessary code/files inside this structure, for example:
The configurations for nginx and other components are very generic and probably should be overwritten in derived images:
/app/etc/nginx/nginx.conf/app/etc/php/php.ini (PHP versions only)/app/etc/php/php-fpm.conf (PHP versions only)/app/etc/supervisor/conf.d/supervisord.conf (PHP versions only)Your CMD line would look like this:
CMD ["nginx", "-p", "/app/opt/openresty/nginx", "-c", "/app/etc/nginx/nginx.conf"]
If you are using one of the PHP versions, you will need to run supervisor to manage the nginx and php-fpm processes:
CMD ["/usr/bin/supervisord", "-c", "/app/etc/supervisor/conf.d/supervisord.conf"]
openresty-docker is licensed under the 2-clause BSD license.
Copyright (c) 2016, Jesse Greathouse [email protected].
This module is licensed under the terms of the BSD license.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Content type
Image
Digest
Size
123.4 MB
Last updated
about 10 years ago
docker pull jessegreathouse/openresty