2015-09-30 21:19:22 +00:00
|
|
|
redash:
|
2016-03-07 23:23:44 +00:00
|
|
|
image: redash/redash:latest
|
2015-09-30 21:19:22 +00:00
|
|
|
ports:
|
|
|
|
- "5000:5000"
|
|
|
|
links:
|
|
|
|
- redis
|
|
|
|
- postgres
|
2015-11-23 13:39:48 +00:00
|
|
|
environment:
|
2016-03-07 22:50:12 +00:00
|
|
|
REDASH_LOG_LEVEL: "INFO"
|
2016-03-08 09:20:32 +00:00
|
|
|
REDASH_REDIS_URL: "redis://redis:6379/0"
|
|
|
|
REDASH_DATABASE_URL: "postgresql://postgres@postgres/postgres"
|
2016-03-07 22:50:12 +00:00
|
|
|
REDASH_COOKIE_SECRET: veryverysecret
|
2015-09-30 21:19:22 +00:00
|
|
|
redis:
|
2015-10-06 21:38:24 +00:00
|
|
|
image: redis:2.8
|
2015-09-30 21:19:22 +00:00
|
|
|
postgres:
|
2015-10-06 21:38:24 +00:00
|
|
|
image: postgres:9.3
|
2015-10-08 19:14:07 +00:00
|
|
|
volumes:
|
2016-06-28 13:05:23 +00:00
|
|
|
- /opt/postgres-data:/var/lib/postgresql/data
|
2015-10-08 18:43:33 +00:00
|
|
|
redash-nginx:
|
2016-03-07 23:16:49 +00:00
|
|
|
image: redash/nginx:latest
|
2015-10-08 18:43:33 +00:00
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
links:
|
|
|
|
- redash
|