Container health check
Added /health
endpoint so users can add a healthcheck e.g.
services:
immich-kiosk:
# omitted for brevity
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
Updated cache-control
- Longer cache for assets such as CSS and JavaScript files (
public, max-age=31536000, immutable
) - Assets from
/image/IMAGE_ID
and/video/VIDEO_ID
now have a cache ofprivate, max-age=86400, no-transform
What's Changed
🚀 New Features
- add health check by @damongolding in #495
- Update cache-control by @damongolding in #498
⚡ Fixes
- schema update by @damongolding in #496
Full Changelog: v0.22.1...v0.22.2