File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ services:
12
12
PYTHONUNBUFFERED : 0
13
13
REDASH_LOG_LEVEL : " INFO"
14
14
REDASH_REDIS_URL : " redis://redis:6379/0"
15
- REDASH_DATABASE_URL : " postgresql://postgres@postgres/postgres"
15
+ POSTGRES_PASSWORD : " FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb"
16
+ REDASH_DATABASE_URL : " postgresql://postgres:FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb@postgres/postgres"
16
17
REDASH_COOKIE_SECRET : " 2H9gNG9obnAQ9qnR9BDTQUph6CbXKCzF"
17
18
redis :
18
19
image : redis:3.0-alpine
19
20
restart : unless-stopped
20
21
postgres :
21
- image : postgres:9.5.6-alpine
22
+ image : pgautoupgrade/pgautoupgrade:dev
22
23
command : " postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
23
24
restart : unless-stopped
25
+ environment :
26
+ POSTGRES_HOST_AUTH_METHOD : " trust"
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ x-redash-service: &redash-service
9
9
x-redash-environment : &redash-environment
10
10
REDASH_LOG_LEVEL : " INFO"
11
11
REDASH_REDIS_URL : " redis://redis:6379/0"
12
- REDASH_DATABASE_URL : " postgresql://postgres@postgres/postgres"
12
+ POSTGRES_PASSWORD : " FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb"
13
+ REDASH_DATABASE_URL : " postgresql://postgres:FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb@postgres/postgres"
13
14
REDASH_RATELIMIT_ENABLED : " false"
14
15
REDASH_ENFORCE_CSRF : " true"
15
16
REDASH_COOKIE_SECRET : " 2H9gNG9obnAQ9qnR9BDTQUph6CbXKCzF"
@@ -67,6 +68,8 @@ services:
67
68
image : redis:3.0-alpine
68
69
restart : unless-stopped
69
70
postgres :
70
- image : postgres:9.5.6-alpine
71
+ image : pgautoupgrade/pgautoupgrade:dev
71
72
command : " postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
72
73
restart : unless-stopped
74
+ environment :
75
+ POSTGRES_HOST_AUTH_METHOD : " trust"
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ services:
52
52
image : redis:3-alpine
53
53
restart : unless-stopped
54
54
postgres :
55
- image : postgres:9.5-alpine
55
+ image : pgautoupgrade/pgautoupgrade:dev
56
56
ports :
57
57
- " 15432:5432"
58
58
# The following turns the DB into less durable, but gains significant performance improvements for the tests run (x3
You can’t perform that action at this time.
0 commit comments