@@ -13,7 +13,7 @@ x-redash-environment: &redash-environment
13
13
REDASH_HOST : http://localhost:5001
14
14
REDASH_LOG_LEVEL : " INFO"
15
15
REDASH_REDIS_URL : " redis://redis:6379/0"
16
- REDASH_DATABASE_URL : " postgresql://postgres@postgres/postgres"
16
+ # REDASH_DATABASE_URL: "postgresql://postgres@postgres/postgres"
17
17
REDASH_RATELIMIT_ENABLED : " false"
18
18
REDASH_MAIL_DEFAULT_SENDER :
" [email protected] "
19
19
REDASH_MAIL_SERVER : " email"
@@ -26,7 +26,7 @@ services:
26
26
<< : *redash-service
27
27
command : dev_server
28
28
depends_on :
29
- - postgres
29
+ # - postgres
30
30
- redis
31
31
ports :
32
32
- " 5001:5000"
@@ -52,17 +52,17 @@ services:
52
52
redis :
53
53
image : redis:7-alpine
54
54
restart : unless-stopped
55
- postgres :
56
- image : pgautoupgrade/pgautoupgrade:latest
57
- ports :
58
- - " 15432:5432"
59
- # The following turns the DB into less durable, but gains significant performance improvements for the tests run (x3
60
- # improvement on my personal machine). We should consider moving this into a dedicated Docker Compose configuration for
61
- # tests.
62
- command : " postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
63
- restart : unless-stopped
64
- environment :
65
- POSTGRES_HOST_AUTH_METHOD : " trust"
55
+ # postgres:
56
+ # image: pgautoupgrade/pgautoupgrade:latest
57
+ # ports:
58
+ # - "15432:5432"
59
+ # # The following turns the DB into less durable, but gains significant performance improvements for the tests run (x3
60
+ # # improvement on my personal machine). We should consider moving this into a dedicated Docker Compose configuration for
61
+ # # tests.
62
+ # command: "postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
63
+ # restart: unless-stopped
64
+ # environment:
65
+ # POSTGRES_HOST_AUTH_METHOD: "trust"
66
66
email :
67
67
image : maildev/maildev
68
68
ports :
0 commit comments