mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 09:27:23 -05:00
26 lines
765 B
YAML
26 lines
765 B
YAML
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"
|
|
POSTGRES_PASSWORD: "FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb"
|
|
REDASH_DATABASE_URL: "postgresql://postgres:FmTKs5vX52ufKR1rd8tn4MoSP7zvCJwb@postgres/postgres"
|
|
REDASH_COOKIE_SECRET: "2H9gNG9obnAQ9qnR9BDTQUph6CbXKCzF"
|
|
redis:
|
|
image: redis:7-alpine
|
|
restart: unless-stopped
|
|
postgres:
|
|
image: postgres:18-alpine
|
|
command: "postgres -c fsync=off -c full_page_writes=off -c synchronous_commit=OFF"
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: "trust"
|