Adds container health checks to those where it is possible

This commit is contained in:
stumpylog
2026-05-20 07:36:52 -07:00
parent 6cd5784bd7
commit 2c9a0fc9d5
6 changed files with 58 additions and 16 deletions
+4 -1
View File
@@ -27,11 +27,14 @@ services:
restart: unless-stopped
volumes:
- redisdata:/data
healthcheck:
test: ["CMD-SHELL", "redis-cli ping | grep -q PONG || exit 1"]
webserver:
image: ghcr.io/paperless-ngx/paperless-ngx:latest
restart: unless-stopped
depends_on:
- broker
broker:
condition: service_healthy
ports:
- "8000:8000"
volumes: