Demo images / Build & push demo images (push) Failing after 2m22s
Replaces the registry host across 86 files: 309 references, covering all 40 app manifests, the orchestrator and container crates, the release and catalog scripts, both demo-images workflows, the ISO builder, demo-deploy, and the frontend marketplace data. Verified the domain actually serves the registry before rewriting anything, rather than assuming the web host implies the registry: - TLS verifies clean, HTTP/2 on the web root - an anonymous token grants a manifest fetch (HTTP 200) with no credentials - skopeo inspect --no-creds resolves an image and lists its tags That last check is the one that matters: an outside developer with no account can now pull, which was the functional blocker for publishing at all. Plain-HTTP references become HTTPS in the same pass, so OTA downloads stop crossing the network in the clear. Deliberately NOT rewritten: - The public FIPS anchor on port 8444. It is a functional network endpoint every node dials to bootstrap the mesh — closer to Bitcoin Core's hardcoded seeds than to leaked infrastructure. The domain does resolve to the same host, so it could become a hostname, but that adds a DNS dependency to the path used precisely when things are broken. Worth a deliberate decision, not a side effect of this change. - The companion APK on port 2100. The domain returns 404 for that path, so rewriting it would swap a working URL for a broken one. The Releases page does serve (200), which is where the plan already wants those binaries. - releases/app-catalog.json, releases/manifest.json and release-manifest.json. These carry `signature` and `signed_by`; editing their contents invalidates the signature and the fleet refuses artifacts that fail verification. They were rewritten in a first pass and reverted — they must be regenerated and re-signed through the signing ceremony instead, which needs the mnemonic. So the catalog still advertises the old host until that ceremony runs. Nodes resolve images through the signed catalog, not the on-disk manifests, so this commit alone does not change what a node pulls. Verified: archipelago-container 75/75; every manifest still parses with a top-level app block; no signed artifact modified. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
app:
|
|
id: immich
|
|
name: Immich
|
|
version: "2.7.4"
|
|
description: Self-hosted photo and video backup with mobile apps and search.
|
|
|
|
# app_id "immich" = the user-facing launcher (matches the catalog entry's title
|
|
# + icon). The container is named "immich_server" so it matches the runtime's
|
|
# existing per-app container references (lifecycle/health/crash-recovery/ports);
|
|
# `container_name` is a top-level app key (captured by serde(flatten) into
|
|
# extensions, read by compute_container_name). It reaches its backends by their
|
|
# underscore aliases on archy-net (DB_HOSTNAME / REDIS_HOSTNAME below).
|
|
container_name: immich_server
|
|
|
|
container:
|
|
image: source.archipelago-foundation.org/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:
|
|
# Runs as container root over a data tree the legacy installer chowned
|
|
# to the subuid range (host 100000 = container uid 1). Without
|
|
# DAC_OVERRIDE the server EACCESes writing upload/encoded-video the
|
|
# moment the container is recreated against this manifest (latent until
|
|
# the 2026-07-05 secret-env migration recreated it). Same cap set as
|
|
# immich-postgres minus the setuid pair it doesn't use.
|
|
capabilities: [CHOWN, DAC_OVERRIDE, FOWNER]
|
|
readonly_root: false
|
|
network_policy: isolated
|
|
|
|
ports:
|
|
- host: 2283
|
|
container: 2283
|
|
protocol: tcp
|
|
bind: 127.0.0.1
|
|
auth: gated
|
|
|
|
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
|