Features: - Dark mode with system preference detection and manual toggle - Album integration via IMMICH_ALBUM_NAME environment variable - Auto-creates album if it doesn't exist - Adds uploaded assets to configured album - Shows album name in connection test - Fixed WebSocket disconnection error Updates: - Enhanced UI with dark mode support for all components - Updated README with new features and screenshot - Added configuration for album name in docker-compose.yml
26 lines
571 B
YAML
26 lines
571 B
YAML
services:
|
|
immich-drop:
|
|
build: .
|
|
container_name: immich-drop
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
|
|
environment:
|
|
IMMICH_ALBUM_NAME: dead-drop
|
|
|
|
env_file:
|
|
- ./.env
|
|
|
|
volumes:
|
|
- immich_drop_data:/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "python - <<'PY'\nimport urllib.request,sys\ntry:\n urllib.request.urlopen('http://localhost:8080/').read(); sys.exit(0)\nexcept Exception:\n sys.exit(1)\nPY"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
immich_drop_data:
|