Auf postgresql 18 umgestellt
This commit is contained in:
@@ -14,11 +14,27 @@ services:
|
|||||||
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/docuseal
|
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/docuseal
|
||||||
PIDFILE: /tmp/server.pid
|
PIDFILE: /tmp/server.pid
|
||||||
|
|
||||||
postgres:
|
#postgres:
|
||||||
image: postgres:15
|
#image: postgres:15
|
||||||
volumes:
|
#volumes:
|
||||||
- './pg_data:/var/lib/postgresql/data'
|
#- './pg_data:/var/lib/postgresql/data'
|
||||||
|
#- backup:/backup
|
||||||
|
#environment:
|
||||||
|
#POSTGRES_USER: postgres
|
||||||
|
#POSTGRES_PASSWORD: postgres
|
||||||
|
#POSTGRES_DB: docuseal
|
||||||
|
#healthcheck:
|
||||||
|
#test: ["CMD-SHELL", "pg_isready -U postgres"]
|
||||||
|
#interval: 5s
|
||||||
|
#timeout: 5s
|
||||||
|
#retries: 5
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
image: postgres:18
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- pg_data:/var/lib/postgresql
|
||||||
|
- backup:/backup
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: postgres
|
POSTGRES_USER: postgres
|
||||||
POSTGRES_PASSWORD: postgres
|
POSTGRES_PASSWORD: postgres
|
||||||
@@ -29,4 +45,8 @@ services:
|
|||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
pg_data:
|
||||||
|
backup:
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user