mirror of
https://github.com/correl/docker-pleroma.git
synced 2024-11-23 11:09:55 +00:00
Add healthchecks (#48)
This commit is contained in:
parent
78e6ac4142
commit
abe0dc3cb8
1 changed files with 9 additions and 1 deletions
|
@ -5,6 +5,8 @@ services:
|
||||||
image: postgres:12.1-alpine
|
image: postgres:12.1-alpine
|
||||||
container_name: pleroma_db
|
container_name: pleroma_db
|
||||||
restart: always
|
restart: always
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "pg_isready", "-U", "pleroma"]
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: pleroma
|
POSTGRES_USER: pleroma
|
||||||
POSTGRES_PASSWORD: ChangeMe!
|
POSTGRES_PASSWORD: ChangeMe!
|
||||||
|
@ -16,6 +18,12 @@ services:
|
||||||
build: .
|
build: .
|
||||||
image: pleroma
|
image: pleroma
|
||||||
container_name: pleroma_web
|
container_name: pleroma_web
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
[
|
||||||
|
"CMD-SHELL",
|
||||||
|
"wget -q --spider --proxy=off localhost:4000 || exit 1",
|
||||||
|
]
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- '4000:4000'
|
- '4000:4000'
|
||||||
|
|
Loading…
Reference in a new issue