Rails app in docker container doesn't reload in development Rails app in docker container doesn't reload in development docker docker

Rails app in docker container doesn't reload in development


I was struggling with this as well, there are 2 things that you need to do:

  1. Map the current directory to the place where Docker is currently hosting the files.
  2. Change the config.file_watcher to ActiveSupport::FileUpdateChecker

Step 1:

In your Dockerfile, check where are you copying/adding the files.

See my Dockerfile:

# https://docs.docker.com/compose/rails/#define-the-projectFROM ruby:2.5.0# The qq is for silent output in the consoleRUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs vim# Sets the path where the app is going to be installedENV RAILS_ROOT /var/www/# Creates the directory and all the parents (if they don't exist)RUN mkdir -p $RAILS_ROOT# This is given by the Ruby Image.# This will be the de-facto directory that # all the contents are going to be stored. WORKDIR $RAILS_ROOT# We are copying the Gemfile first, so we can install # all the dependencies without any issues# Rails will be installed once you load it from the Gemfile# This will also ensure that gems are cached and onlu updated when # they change.COPY Gemfile ./COPY Gemfile.lock ./# Installs the Gem File.RUN bundle install# We copy all the files from the current directory to our# /app directory# Pay close attention to the dot (.)# The first one will select ALL The files of the current directory, # The second dot will copy it to the WORKDIR!COPY . .

The /var/www directory is key here. That's the inner folder structure of the image, and where you need to map the current directory to.

Then, in your docker-compose, define an index called volumes, and place that route there (Works for V2 as well!):

version: '3'services:  rails:    # Relative path to Dockerfile.     # Docker will read the Dockerfile automatically    build: .    # This is the one that makes the magic    volumes:    - "./:/var/www"

Directory of the current project

The image above is for reference. Check that the docker-compose and Dockefile are in the same directory. They not necessarily need to be like this, you just have to be sure that the directories are specified correctly.

docker-compose works relative to the file. The ./means that it will take the current docker-compose directory (In this case the entire ruby app) as the place where it's going to host the image's content.

The : just a way to divide between the where it's going to be vs where the image has it.

The next part: /var/www/ is the same path you specified in the Dockerfile.

Step 2:

Open development.rb (Can be found in /config/environments)

and look for config.file_watcher, replace:

config.file_watcher = ActiveSupport::EventedFileUpdateChecker

for:

config.file_watcher = ActiveSupport::FileUpdateChecker

This would do a polling mechanism instead.

That's it!

Remember, that anything that is not routes.rb, and it's not inside the app folder, it's highly probable that the Rails app is going to need to be reloaded manually.


Try to rebuild the image with the next command to add the changes to the dockerized app:

docker-compose build

And after it you need to restart the app with docker-compose up to recreate the docker container for your app.


You should create a volume that maps your local/host source code with the same code located inside docker in order to work on the code and enable such features.

Here's an example of a (docker-compose) mapped file that I'm updating in my editor without having to go through the build process just to see my updates:

  volumes:    - ./lib/radius_auth.py:/etc/freeradius/radius_auth.py

Without mapping host <--> guest, the guest will simply run whatever code it has received during the build process.