Skip to content

Commit e652a6b

Browse files
authored
postgresql needs a superuser password (#231)
1 parent 2576bee commit e652a6b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.env.prod.dist

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ DB_CYPHER_KEY=<insert_a_secret_value>
55
SECRET_KEY=<insert_another_secret_value>
66
DATABASE_URL=postgres://postgres@db:5432/postgres
77
DISABLE_DATABASE_SSL_CHECK=1
8+
POSTGRES_PASSWORD=<insert_a_secure_password>

docker-compose.prod.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ version: "3.1"
33
services:
44
db:
55
image: postgres:10
6+
env_file:
7+
- .env.prod
68

79
redis:
810
image: redis:5.0-alpine

0 commit comments

Comments
 (0)