From b17202ca0f19b83beb25afdba7e713a0f9329ffa Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 14 Mar 2016 21:39:39 +0100 Subject: Adding a docker-compose template for running Mastodon easily --- config/database.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'config') diff --git a/config/database.yml b/config/database.yml index 13e176a2d..8914ab16d 100644 --- a/config/database.yml +++ b/config/database.yml @@ -2,6 +2,7 @@ default: &default adapter: postgresql pool: 5 timeout: 5000 + encoding: unicode development: <<: *default @@ -16,4 +17,7 @@ test: production: <<: *default - database: mastodon_production + database: postgres + username: postgres + password: + host: db -- cgit