0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-21 03:06:08 +02:00

Compare commits

...

2 commits

Author SHA1 Message Date
Josh
4af245936f
Merge 9f1ec22140 into 3adaf30839 2025-03-31 16:31:32 +08:00
Josh
9f1ec22140 chore(examples): add postgres 15 image tag
Signed-off-by: Josh <josh.t.richards@gmail.com>
2024-10-10 10:02:24 -04:00
5 changed files with 5 additions and 5 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

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

@ -515,7 +515,7 @@ Example:
```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