mirror of
https://github.com/correl/docker-pleroma.git
synced 2024-11-25 03:00:06 +00:00
Update Postgres version to 16 in docker-compose
This commit is contained in:
parent
2c45037bbf
commit
9550ccfd1c
1 changed files with 4 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
||||||
version: '3.8'
|
version: "3.8"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres:12.1-alpine
|
image: postgres:16-alpine
|
||||||
container_name: pleroma_db
|
container_name: pleroma_db
|
||||||
restart: always
|
restart: always
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
@ -19,13 +19,10 @@ services:
|
||||||
container_name: pleroma_web
|
container_name: pleroma_web
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
[
|
["CMD-SHELL", "wget -q --spider --proxy=off localhost:4000 || exit 1"]
|
||||||
"CMD-SHELL",
|
|
||||||
"wget -q --spider --proxy=off localhost:4000 || exit 1",
|
|
||||||
]
|
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- '4000:4000'
|
- "4000:4000"
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
# Feel free to remove or override this section
|
# Feel free to remove or override this section
|
||||||
|
|
Loading…
Reference in a new issue