Files
grecia/config/database-docker.yml.example
Javi Martín 2b4e1cf358 Add missing double quotes
We overlooked a few single quotes while we changed thousands of them.
2019-03-25 13:22:35 +01:00

29 lines
570 B
Plaintext

default: &default
adapter: postgresql
encoding: unicode
#host: localhost
host: database #<--the name of the db in the docker-compose
pool: 5
port: 5432
username: postgres
password: <%= ENV["POSTGRES_PASSWORD"] %>
development: &development
<<: *default
database: consul_development
# The staging, preproduction and production dbs are only needed
# for running rake assets:precompile locally before deploying
staging:
<<: *development
preproduction:
<<: *development
production:
<<: *development
test:
<<: *default
database: consul_test