Skip to content

MainStMission/docker-rails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker-Rails

Build Status Code Climate Issue Count Dependency Status Greenkeeper badge

Simple Rails 5.1 application to demonstrate using Docker for production deployment. The application is a very simple kind of CMS (content management system) allowing to manage posts. Beside the boring CRUD functionality it demonstrates some non-default features.

Features

Why?

This repo demonstrates my way of building Rails applications. The techniques used to build the app should not be considered as "best practice", maybe there are better ways to build. Any feedback would be appreciated.

Multi container architecture

The application is divided into 7 different containers:

  • app: Main part. It contains the Rails code to handle web requests (with the help of Nginx and the Puma gem). See the Dockerfile for details. The image is based on ledermann/base, which in turn is based on the official Ruby image and just adds Nginx, Node.js and Yarn.
  • worker: Background processing. It contains the same Rails code, but only runs Sidekiq
  • db: PostgreSQL database
  • elasticsearch: Full text search engine
  • memcached: Memory caching system (used from within the app via the Dalli gem)
  • redis: In-memory key/value store (used by Sidekiq and ActionCable)
  • backup: Regularly backups the database as a dump via CRON to an Amazon S3 bucket

For running tests using RSpec, there are two additional containers:

  • test: Application code prepared for running tests
  • selenium: Standalone Chrome for executing feature specs containing JavaScript

Check it out!

To start up the application in your Docker environment:

git clone https://github.com/ledermann/docker-rails.git
cd docker-rails
cp .env.example .env
docker-compose up --build

Navigate your browser to http://[DOCKER_HOST]:[DOCKER_PORT].

Deployment

On every push, the test suite is run in public on TravisCi and in private on GitlabCI.

On every push, a new Docker image is built on Docker Hub. Via its auto-deploy feature it can be deployed to your own cloud server.

On every start of the app container, the database will be migrated (or, if not exists, created with some seeds).

If you are already a Docker Cloud user, you can deploy the whole stack with one click:

Deploy to Docker Cloud

Domain setup and SSL encryption with Let's Encrypt

The app container is ready to host with nginx proxy and letsencrypt-nginx-proxy-companion. See docker-cloud.yml for example setup.

About

Dockerized Rails app using ActionCable, Elasticsearch, Sidekiq and Yarn

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 74.9%
  • HTML 13.1%
  • CoffeeScript 4.8%
  • CSS 4.6%
  • JavaScript 1.0%
  • Nginx 1.0%
  • Shell 0.6%