diff --git a/files/gramps/docker-compose.template.yml b/files/gramps/docker-compose.template.yml index 7f18cf0..371df98 100644 --- a/files/gramps/docker-compose.template.yml +++ b/files/gramps/docker-compose.template.yml @@ -1,9 +1,8 @@ # See versions: https://github.com/gramps-project/gramps-web/pkgs/container/grampsweb services: - gramps_app: &gramps_app - image: ghcr.io/gramps-project/grampsweb:26.5.1 + image: ghcr.io/gramps-project/grampsweb:26.5.2 container_name: gramps_app depends_on: - gramps_redis @@ -12,15 +11,15 @@ services: - "gramps_network" - "web_proxy_network" volumes: - - "{{ (data_dir, 'gramps_db') | path_join }}:/root/.gramps/grampsdb" # persist Gramps database - - "{{ (data_dir, 'gramps_users') | path_join }}:/app/users" # persist user database - - "{{ (data_dir, 'gramps_index') | path_join }}:/app/indexdir" # persist search index - - "{{ (data_dir, 'gramps_secret') | path_join }}:/app/secret" # persist flask secret - - "{{ (cache_dir, 'gramps_thumb_cache') | path_join }}:/app/thumbnail_cache" # persist thumbnails - - "{{ (cache_dir, 'gramps_cache') | path_join }}:/app/cache" # persist export and report caches - - "{{ media_dir }}:/app/media" # persist media files + - "{{ (data_dir, 'gramps_db') | path_join }}:/root/.gramps/grampsdb" # persist Gramps database + - "{{ (data_dir, 'gramps_users') | path_join }}:/app/users" # persist user database + - "{{ (data_dir, 'gramps_index') | path_join }}:/app/indexdir" # persist search index + - "{{ (data_dir, 'gramps_secret') | path_join }}:/app/secret" # persist flask secret + - "{{ (cache_dir, 'gramps_thumb_cache') | path_join }}:/app/thumbnail_cache" # persist thumbnails + - "{{ (cache_dir, 'gramps_cache') | path_join }}:/app/cache" # persist export and report caches + - "{{ media_dir }}:/app/media" # persist media files environment: - GRAMPSWEB_TREE: "Gramps" # will create a new tree if not exists + GRAMPSWEB_TREE: "Gramps" # will create a new tree if not exists GRAMPSWEB_SECRET_KEY: "{{ gramps_secret_key }}" GRAMPSWEB_BASE_URL: "https://gramps.vakhrushev.me" GRAMPSWEB_REGISTRATION_DISABLED: "true" @@ -41,7 +40,7 @@ services: GRAMPSWEB_MEDIA_BASE_DIR: "/app/media" gramps_celery: - <<: *gramps_app # YAML merge key copying the entire grampsweb service config + <<: *gramps_app # YAML merge key copying the entire grampsweb service config container_name: gramps_celery depends_on: - gramps_redis