Browse Source

Change PostgreSQL data volume path in Docker Compose (#8216)

adjusted to v18 change in DATA path
db container will not start and freshrss will complain
fix https://github.com/FreshRSS/FreshRSS/issues/8215
FollowTheWizard 4 months ago
parent
commit
39725cdde9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Docker/freshrss/docker-compose-db.yml

+ 1 - 1
Docker/freshrss/docker-compose-db.yml

@@ -11,7 +11,7 @@ services:
       options:
         max-size: 10m
     volumes:
-      - db:/var/lib/postgresql/data
+      - db:/var/lib/postgresql/18/docker
     environment:
       POSTGRES_DB: ${DB_BASE:-freshrss}
       POSTGRES_USER: ${DB_USER:-freshrss}