Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/networld-to/docker-webapp

This repository includes rvm with ruby version 2.0 and nginx as proxy for ruby on rails or sinatra apps.
https://github.com/networld-to/docker-webapp

Last synced: about 2 months ago
JSON representation

This repository includes rvm with ruby version 2.0 and nginx as proxy for ruby on rails or sinatra apps.

Awesome Lists containing this project

README

        

# docker-webapp

- nginx
- passenger 4.0.41
- ruby 2.1.2

For more versions see Dockerfile.

## Getting Started

Get the image via index.docker.io

$ docker pull networld/docker-webapp

or build from source

$ IMAGE_NAME=networld/docker-webapp
$ docker build --rm -t ${IMAGE_NAME} .

Start a container with:

$ docker run --rm -p 127.0.0.1:8181:80 -d -v /path/to/ruby_on_rails_app:/webapp ${IMAGE_NAME}
$ curl http://127.0.0.1:8181 # Test with curl or even better your favorite browser

## Boot Script

If available the script `init.sh` under the root directory of the web application is executed during boot time (`/webapp/init.sh`). This script can be used to setup additional components or tasks, e.g. adding cronjobs or starting background workers.

**Important:** Assure that the script is idempotent. That means if executed multiple times it does not change the result. Also keep in mind that the script is executed on each boot and before the web server nginx is started.

For more information see https://index.docker.io/u/networld/docker-webapp/ and
the source code under https://github.com/networld-to/docker-webapp