From dd6be76b08df7661e0703e1efce5d31481f382b1 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Fri, 21 Nov 2025 22:45:48 +0100 Subject: [PATCH] gramps: changed env format --- docker/personal/gramps/docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docker/personal/gramps/docker-compose.yml b/docker/personal/gramps/docker-compose.yml index d4cb87d..9e9432f 100644 --- a/docker/personal/gramps/docker-compose.yml +++ b/docker/personal/gramps/docker-compose.yml @@ -9,11 +9,11 @@ services: ports: - "5000" environment: - GDK_BACKEND: "-" - GRAMPSWEB_TREE: "Gramps Web" # will create a new tree if not exists - GRAMPSWEB_CELERY_CONFIG__broker_url: "redis://grampsweb_redis:6379/0" - GRAMPSWEB_CELERY_CONFIG__result_backend: "redis://grampsweb_redis:6379/0" - GRAMPSWEB_RATELIMIT_STORAGE_URI: redis://grampsweb_redis:6379/1 + - GDK_BACKEND=- + - GRAMPSWEB_TREE="Gramps Web" # will create a new tree if not exists + - GRAMPSWEB_CELERY_CONFIG__broker_url="redis://grampsweb_redis:6379/0" + - GRAMPSWEB_CELERY_CONFIG__result_backend="redis://grampsweb_redis:6379/0" + - GRAMPSWEB_RATELIMIT_STORAGE_URI="redis://grampsweb_redis:6379/1" depends_on: - grampsweb_redis volumes: @@ -38,10 +38,10 @@ services: image: ghcr.io/gramps-project/grampsweb:25.11.0 restart: always environment: - GRAMPSWEB_TREE: "Gramps Web" # will create a new tree if not exists - GRAMPSWEB_CELERY_CONFIG__broker_url: "redis://grampsweb_redis:6379/0" - GRAMPSWEB_CELERY_CONFIG__result_backend: "redis://grampsweb_redis:6379/0" - GRAMPSWEB_RATELIMIT_STORAGE_URI: redis://grampsweb_redis:6379/1 + - GRAMPSWEB_TREE="Gramps Web" # will create a new tree if not exists + - GRAMPSWEB_CELERY_CONFIG__broker_url="redis://grampsweb_redis:6379/0" + - GRAMPSWEB_CELERY_CONFIG__result_backend="redis://grampsweb_redis:6379/0" + - GRAMPSWEB_RATELIMIT_STORAGE_URI="redis://grampsweb_redis:6379/1" volumes: - gramps_users:/app/users - gramps_index:/app/indexdir