Reduce healthcheck internal while keep performance #1082

Closed
opened 2026-04-06 01:34:20 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @hellodword on 6/27/2024

Currently, it takes 60 seconds for vaultwarden/server to become healthy:

version: "3"

services:
  vaultwarden:
    image: vaultwarden/server:1.30.5-alpine
    # image: vaultwarden/server:1.30.5
    restart: no
    environment:
      I_REALLY_WANT_VOLATILE_STORAGE: true

  nginx:
    image: nginx
    restart: no
    depends_on:
      vaultwarden:
        condition: service_healthy

By implementing a cache mechanism, we can reduce this interval.

*Originally created by @hellodword on 6/27/2024* Currently, it takes 60 seconds for `vaultwarden/server` to become healthy: ```ymal version: "3" services: vaultwarden: image: vaultwarden/server:1.30.5-alpine # image: vaultwarden/server:1.30.5 restart: no environment: I_REALLY_WANT_VOLATILE_STORAGE: true nginx: image: nginx restart: no depends_on: vaultwarden: condition: service_healthy ``` By implementing a cache mechanism, we can reduce this interval.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/vaultwarden#1082