From 33618f98eadef391ad7ee39cff26b62e5667fb52 Mon Sep 17 00:00:00 2001 From: Tam Nguyen Date: Wed, 17 Dec 2025 22:51:53 +1100 Subject: [PATCH 1/2] fix(template): superset version and postgres volume mount --- templates/compose/superset-with-postgresql.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/compose/superset-with-postgresql.yaml b/templates/compose/superset-with-postgresql.yaml index d314a587e..cd16b6ae0 100644 --- a/templates/compose/superset-with-postgresql.yaml +++ b/templates/compose/superset-with-postgresql.yaml @@ -7,7 +7,7 @@ services: superset: - image: amancevice/superset:latest + image: amancevice/superset:5.0.0 environment: - SERVICE_URL_SUPERSET_8088 - SECRET_KEY=${SERVICE_BASE64_64_SUPERSETSECRETKEY} @@ -63,13 +63,13 @@ services: retries: 10 postgres: - image: postgres:17-alpine + image: postgres:18 environment: - POSTGRES_USER=${SERVICE_USER_POSTGRES} - POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES} - POSTGRES_DB=${POSTGRES_DB:-superset-db} volumes: - - superset_postgres_data:/var/lib/postgresql/data + - superset_postgres_data:/var/lib/postgresql healthcheck: test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] interval: 5s @@ -77,7 +77,7 @@ services: retries: 10 redis: - image: redis:8-alpine + image: redis:8 volumes: - superset_redis_data:/data command: redis-server --requirepass ${SERVICE_PASSWORD_REDIS} From ddcb22e468f05d9f1c6901efea779385710809a4 Mon Sep 17 00:00:00 2001 From: Tam Nguyen Date: Sun, 21 Dec 2025 12:02:19 +1100 Subject: [PATCH 2/2] deps: bump superset to 6.0.0 --- templates/compose/superset-with-postgresql.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/superset-with-postgresql.yaml b/templates/compose/superset-with-postgresql.yaml index cd16b6ae0..4558222a2 100644 --- a/templates/compose/superset-with-postgresql.yaml +++ b/templates/compose/superset-with-postgresql.yaml @@ -7,7 +7,7 @@ services: superset: - image: amancevice/superset:5.0.0 + image: amancevice/superset:6.0.0 environment: - SERVICE_URL_SUPERSET_8088 - SECRET_KEY=${SERVICE_BASE64_64_SUPERSETSECRETKEY}