mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-20 21:43:36 -07:00
Fix broken docker-compose example
This PR fixes the missing argument in the postgres container that prevents db creation Also upgraded the postgresql version to 17 -tested- Lastly added information on how to upgrade postgres versions
This commit is contained in:
parent
8d51c14d24
commit
f3327f67b3
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
# Installing with PostgreSQL
|
||||
|
||||
!!! Warning
|
||||
When upgrading postgresql major versions, manual steps are required [Postgres#37](https://github.com/docker-library/postgres/issues/37).
|
||||
|
||||
PostgreSQL might be considered if you need to support many concurrent users. In addition, some features are only enabled on PostgreSQL, such as fuzzy search.
|
||||
|
||||
**For Environment Variable Configuration, see** [Backend Configuration](./backend-config.md)
|
||||
|
@ -38,7 +41,7 @@ services:
|
|||
|
||||
postgres:
|
||||
container_name: postgres
|
||||
image: postgres:15
|
||||
image: postgres:17
|
||||
restart: always
|
||||
volumes:
|
||||
- mealie-pgdata:/var/lib/postgresql/data
|
||||
|
@ -46,6 +49,7 @@ services:
|
|||
POSTGRES_PASSWORD: mealie
|
||||
POSTGRES_USER: mealie
|
||||
PGUSER: mealie
|
||||
POSTGRES_DB: mealie
|
||||
healthcheck:
|
||||
test: ["CMD", "pg_isready"]
|
||||
interval: 30s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue