From dea9395ef7acbe36c75a04d37cb9f6a8f69d8474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Tue, 26 Nov 2024 15:44:25 +0100 Subject: [PATCH] Postgres fix fulltext files dirs --- postgres/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postgres/docker-compose.yml b/postgres/docker-compose.yml index 35f14c7..9765b06 100644 --- a/postgres/docker-compose.yml +++ b/postgres/docker-compose.yml @@ -11,9 +11,9 @@ services: volumes: - postgres-data:/var/lib/postgresql/data - .:/workdir - - ./tsearch_data/czech.affix:/usr/local/share/postgresql/tsearch_data/czech.affix - - ./tsearch_data/czech.dict:/usr/local/share/postgresql/tsearch_data/czech.dict - - ./tsearch_data/czech.stop:/usr/local/share/postgresql/tsearch_data/czech.stop + - ./tsearch_data/czech.affix:/usr/share/postgresql/17/tsearch_data/czech.affix + - ./tsearch_data/czech.dict:/usr/share/postgresql/17/tsearch_data/czech.dict + - ./tsearch_data/czech.stop:/usr/share/postgresql/17/tsearch_data/czech.stop volumes: postgres-data: -- GitLab