If I'm not wrong, it seems like defined with Figaro variables are not available in Docker container.
I have env
files to configure Postgresq DB:
POSTGRES_USER=ENV['db_user']
POSTGRES_PASSWORD=ENV['db_password]
POSTGRES_DB=ENV['db_name']
I have application.yml
file copied with all the other Rails app files to the container (I could check it with ls
in the container shell).
Is it a normal behaviour ?