vaultwarden : add healthcheck

This commit is contained in:
Gitouche 2023-08-10 21:56:29 +02:00
parent fd7af172d5
commit b832cf0f5d
1 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,11 @@ services:
- data:/data:Z
ports:
- "127.0.0.1:8090:80"
healthcheck:
test: ["CMD", "/healthcheck.sh"]
interval: 60s
timeout: 10s
retries: 5
depends_on:
- ${db_container_name}