0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-02-05 11:08:27 +01:00

chore(examples): add postgres 15 image tag

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2024-10-10 09:15:37 -04:00 committed by Josh Richards
parent c83d457857
commit 9f1ec22140
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
services: services:
db: db:
image: postgres:alpine image: postgres:15
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data:Z - db:/var/lib/postgresql/data:Z
@ -39,4 +39,4 @@ services:
volumes: volumes:
db: db:
nextcloud: nextcloud:

View file

@ -1,6 +1,6 @@
services: services:
db: db:
image: postgres:alpine image: postgres:15
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data:Z - db:/var/lib/postgresql/data:Z

View file

@ -1,6 +1,6 @@
services: services:
db: db:
image: postgres:alpine image: postgres:15
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data:Z - db:/var/lib/postgresql/data:Z

View file

@ -2,7 +2,7 @@ version: '3'
services: services:
db: db:
image: postgres:alpine image: postgres:15
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data:Z - db:/var/lib/postgresql/data:Z

View file

@ -395,7 +395,7 @@ As an alternative to passing sensitive information via environment variables, `_
```yaml ```yaml
services: services:
db: db:
image: postgres image: postgres:15
restart: always restart: always
volumes: volumes:
- db:/var/lib/postgresql/data - db:/var/lib/postgresql/data