database.yml.docker 349 B

123456789101112131415
  1. default: &default
  2. adapter: postgresql
  3. database: <%= ENV["DATABASE_URL"] %>
  4. development:
  5. <<: *default
  6. # Warning: The database defined as "test" will be erased and
  7. # re-generated from your development database when you run "rake".
  8. # Do not set this db to the same as development or production.
  9. test:
  10. <<: *default
  11. production:
  12. <<: *default