Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update compose.yaml: Remove x-redash-image #211

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
x-redash-image: &redash-image
# https://hub.docker.com/r/redash/preview/tags
image: redash/preview:24.06.0-dev
platform: linux/amd64

x-redash-environment: &redash-environment
REDASH_LOG_LEVEL: "INFO"
REDASH_REDIS_URL: "redis://redis:6379/0"
Expand All @@ -16,7 +11,8 @@ x-redash-environment: &redash-environment

services:
server:
<<: *redash-image
image: redash/preview:24.06.0-dev
platform: linux/amd64
depends_on:
postgres:
condition: service_healthy
Expand All @@ -29,14 +25,16 @@ services:
<<: *redash-environment
PYTHONUNBUFFERED: 0
scheduler:
<<: *redash-image
image: redash/preview:24.06.0-dev
platform: linux/amd64
command: scheduler
depends_on:
- server
environment:
<<: *redash-environment
worker:
<<: *redash-image
image: redash/preview:24.06.0-dev
platform: linux/amd64
command: worker
depends_on:
- server
Expand Down