From fccdadb95a4e58651f80c89dd1c10d1b7fcb7fe9 Mon Sep 17 00:00:00 2001 From: prichier Date: Tue, 27 Oct 2020 19:09:10 +0100 Subject: [PATCH] Fix MR649 threads about env.template, pg port --- docker/production/README.md | 2 +- docker/production/{env => env.template} | 0 docker/production/releases.exs | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename docker/production/{env => env.template} (100%) diff --git a/docker/production/README.md b/docker/production/README.md index 12bc8851..7054146d 100644 --- a/docker/production/README.md +++ b/docker/production/README.md @@ -14,7 +14,7 @@ You will need to : ## Update the env file cd docker/production/ - cp env.example .env + cp env.template .env Edit the `.env` content with your own settings. More settings can be added in .env, see all in docker-compose.yml file. diff --git a/docker/production/env b/docker/production/env.template similarity index 100% rename from docker/production/env rename to docker/production/env.template diff --git a/docker/production/releases.exs b/docker/production/releases.exs index 64a6ef99..41213267 100644 --- a/docker/production/releases.exs +++ b/docker/production/releases.exs @@ -28,7 +28,7 @@ config :mobilizon, Mobilizon.Storage.Repo, password: System.get_env("MOBILIZON_DATABASE_PASSWORD", "password"), database: System.get_env("MOBILIZON_DATABASE_DBNAME", "mobilizon"), hostname: System.get_env("MOBILIZON_DATABASE_HOST", "postgres"), - port: "5432", + port: 5432, pool_size: 10 config :mobilizon, Mobilizon.Web.Email.Mailer,