Skip to content

jessegreathouse/openresty-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Openresty layer for combining PHP, Node.js

Supported tags Dockerfile links

Docker Hub links

Table of Contents

Overview

The 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.

Directions

This image provides a directory structure in which everything must stem from the root folder: /app.

The structure is as follows:

  • /app
  • /app/bin
  • /app/etc
  • /app/tmp
  • /app/tmp/session
  • /app/var
  • /app/var/cache
  • /app/var/logs
  • /app/opt
  • /app/opt/openresty
  • /app/opt/openresty/nginx
  • /app/opt/node (Node.js versions only)
  • /app/opt/php (PHP versions only)

The bin folder: /app/bin is added to $PATH and will have symlinks to relevant binaries:

  • /app/bin/nginx
  • /app/bin/node (Node.js versions only)
  • /app/bin/npm (Node.js versions only)
  • /app/bin/php (PHP versions only)
  • /app/bin/phpize (PHP versions only)
  • /app/bin/pecl (PHP versions only)
  • /app/bin/pear (PHP versions only)

This image expects you to add your own necessary code/files inside this structure, for example:

  • /app/src
  • /app/web
  • /app/test

The configurations for nginx and other components are very generic and probably should be overwritten in derived images:

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"]

Copyright & License

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:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

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.

About

Openresty layers for combining PHP, Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published