postgresql 18+ changed the docker mount point (#2008)

This commit is contained in:
Athou
2026-01-03 10:26:59 +01:00
parent df722ffa8b
commit f7505298d7

View File

@@ -8,7 +8,7 @@ Start CommaFeed with a H2 embedded database. Then login as `admin/admin` on http
### docker ### docker
`docker run --name commafeed --detach --publish 8082:8082 --restart unless-stopped --volume /path/to/commafeed/db:/commafeed/data --memory 256M athou/commafeed:latest-h2` `docker run --name commafeed --detach --publish 8082:8082 --restart unless-stopped --volume /path/to/commafeed/data:/commafeed/data --memory 256M athou/commafeed:latest-h2`
### docker-compose ### docker-compose
@@ -18,7 +18,7 @@ services:
image: athou/commafeed:latest-h2 image: athou/commafeed:latest-h2
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- /path/to/commafeed/db:/commafeed/data - ./data:/commafeed/data
deploy: deploy:
resources: resources:
limits: limits:
@@ -56,7 +56,7 @@ services:
POSTGRES_PASSWORD: commafeed POSTGRES_PASSWORD: commafeed
POSTGRES_DB: commafeed POSTGRES_DB: commafeed
volumes: volumes:
- /path/to/commafeed/db:/var/lib/postgresql/data - ./data:/var/lib/postgresql
``` ```
CommaFeed also supports: CommaFeed also supports: