mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 09:05:17 +00:00
f56f4c4899
Signed-off-by: koooge <koooooge@gmail.com>
23 lines
571 B
YAML
23 lines
571 B
YAML
version: '2.2'
|
|
services:
|
|
redash:
|
|
build: ../
|
|
command: manage version
|
|
depends_on:
|
|
- postgres
|
|
- redis
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
PYTHONUNBUFFERED: 0
|
|
REDASH_LOG_LEVEL: "INFO"
|
|
REDASH_REDIS_URL: "redis://redis:6379/0"
|
|
REDASH_DATABASE_URL: "postgresql://postgres@postgres/postgres"
|
|
redis:
|
|
image: redis:3.0-alpine
|
|
restart: unless-stopped
|
|
postgres:
|
|
image: postgres:9.5.6-alpine
|
|
command: "postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
|
|
restart: unless-stopped
|