zenbakiak / docker-rails

Dockerized Rails app using ActionCable, Elasticsearch, Sidekiq and Yarn

Home Page:https://docker-rails.georg-ledermann.de/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker-Rails

Build Status Code Climate Issue Count Dependency Status Greenkeeper badge

Simple Rails 5.2 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 has 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 system tests 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

Wait some minutes while the database will be prepared. Then, navigate your browser to http://[DOCKER_HOST]:[DOCKER_PORT].

Sign in to the admin account:

  • Username: admin@example.org
  • Password: secret

Enjoy!

Deployment

On every push, the test suite (including RuboCop checks) is run in public on Travis CI and in private on Gitlab CI.

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

https://docker-rails.georg-ledermann.de/

License:MIT License


Languages

Language:Ruby 77.4%Language:HTML 12.1%Language:CSS 4.1%Language:CoffeeScript 4.1%Language:JavaScript 1.8%Language:Shell 0.5%