feat(ui): Services tab — backend classification, parent icons, categories sub-nav
- Classify databases/APIs/backends into Services (#10): add immich-postgres/redis to SERVICE_NAMES; isServiceContainer matches -postgres/-redis/-valkey/-cache/-db suffixes; isWebsitePackage final fallback now routes any no-UI, non-known package to Services ("anything that isn't the frontend UI launcher"). - Services show their parent app's icon (#14): backends reuse the app logo (immich-* → immich, archy-btcpay-db → btcpay, indeedhub-* → indeedhub, etc.) via explicit APP_ICON_FALLBACKS + prefix map, instead of 404 → 📦. - Categories sub-nav for Services (#12): getServiceCategory + buildServiceCategories + useServiceCategories; Services tab gets the same desktop/mobile category strips (Databases/Caches/APIs/Backends), shown only for categories with items. Shared selectedCategory resets to 'all' on tab switch. - Mobile swipe (#11): the tab-swipe gesture is suppressed over .mobile-category-strip so swiping the category chips scrolls them instead of changing tabs (covers both My Apps and the new Services strip). vue-tsc build clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
9e6c5370fc
commit
0860dfacc7
@@ -0,0 +1,69 @@
|
||||
app:
|
||||
id: immich-server
|
||||
name: Immich
|
||||
version: "2.7.4"
|
||||
description: Self-hosted photo and video backup with mobile apps and search.
|
||||
|
||||
# Named by app_id (immich-server); connects to its siblings by their app_id
|
||||
# aliases on archy-net (see DB_HOSTNAME / REDIS_HOSTNAME below).
|
||||
|
||||
container:
|
||||
image: 146.59.87.168:3000/lfg2025/immich-server:release
|
||||
pull_policy: if-not-present
|
||||
network: archy-net
|
||||
secret_env:
|
||||
- key: DB_PASSWORD
|
||||
secret_file: immich-db-password
|
||||
|
||||
dependencies:
|
||||
- app_id: immich-postgres
|
||||
- app_id: immich-redis
|
||||
- storage: 200Gi
|
||||
|
||||
resources:
|
||||
memory_limit: 2Gi
|
||||
disk_limit: 200Gi
|
||||
|
||||
security:
|
||||
capabilities: []
|
||||
readonly_root: false
|
||||
network_policy: isolated
|
||||
|
||||
ports:
|
||||
- host: 2283
|
||||
container: 2283
|
||||
protocol: tcp
|
||||
|
||||
volumes:
|
||||
- type: bind
|
||||
source: /var/lib/archipelago/immich
|
||||
target: /usr/src/app/upload
|
||||
options: [rw]
|
||||
|
||||
environment:
|
||||
- DB_HOSTNAME=immich-postgres
|
||||
- DB_USERNAME=postgres
|
||||
- DB_DATABASE_NAME=immich
|
||||
- REDIS_HOSTNAME=immich-redis
|
||||
- UPLOAD_LOCATION=/usr/src/app/upload
|
||||
|
||||
health_check:
|
||||
type: http
|
||||
endpoint: http://localhost:2283
|
||||
path: /api/server/ping
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 20
|
||||
|
||||
interfaces:
|
||||
main:
|
||||
name: Web UI
|
||||
description: Immich photo library
|
||||
type: ui
|
||||
port: 2283
|
||||
protocol: http
|
||||
path: /
|
||||
|
||||
metadata:
|
||||
launch:
|
||||
open_in_new_tab: true
|
||||
Reference in New Issue
Block a user