Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails app in docker container doesn't reload in development

I followed this docker-compose tutorial on howto start a rails app. It runs perfectly but the app isn't reloaded when I change a controller.

What can it be missing?

like image 241
samuel Avatar asked Jun 08 '16 10:06

samuel


People also ask

How do I run a Rails program in docker?

In your terminal, change your directory to the docker-rails directory and run the following command: >_ docker build -t rubyapp . To create a container from this image, run the command docker run -p 3000:3000 rubyapp . This creates a container and binds port 3000 of your host computer to port 3000 of the container.

Should I use docker while developing?

Docker may speed up your development process significantly, but not necessarily your app itself. Although it helps with making your application scalable, so more users will be able to use it, the single instance of your app will usually be just a hint slower than without Docker.

Can you develop in a docker container?

Developing inside a Docker container generally means starting a container and leaving it running, while you edit your source code. As you make changes, you see the changes appear in the container. To get your source code inside a container, you can use something called a bind mount.


1 Answers

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-project  FROM ruby:2.5.0 # The qq is for silent output in the console RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs vim  # Sets the path where the app is going to be installed ENV 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.

If that doesn't work, try adding the following line in the environment file, in this case development.rb:

config.cache_classes = false 

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.

like image 157
Jose A Avatar answered Sep 29 '22 10:09

Jose A