Skip to content

add immich frame#4954

Merged
stavros-k merged 2 commits into
masterfrom
immich-frame
May 11, 2026
Merged

add immich frame#4954
stavros-k merged 2 commits into
masterfrom
immich-frame

Conversation

@stavros-k

Copy link
Copy Markdown
Contributor

Closes #3893

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new Community train app, Immich Frame, including its UI questions/values, metadata, and a vendored base_v2_3_5 template library used by the app’s Jinja render template.

Changes:

  • Introduces the new ix-dev/community/immich-frame app (metadata, questions, values, render template, README, test values).
  • Vendors the templates/library/base_v2_3_5 renderer library (and its unit tests) used by the app’s docker-compose.yaml template.
  • Updates the repo spellchecker dictionary to recognize immichframe.

Reviewed changes

Copilot reviewed 83 out of 85 changed files in this pull request and generated no comments.

Show a summary per file
File Description
ix-dev/community/immich-frame/app.yaml App catalog metadata for Immich Frame (versioning, links, run-as context).
ix-dev/community/immich-frame/item.yaml Item categorization and icon URL.
ix-dev/community/immich-frame/ix_values.yaml Defines image repositories/tags and template constants.
ix-dev/community/immich-frame/README.md App README stub with project link/description.
ix-dev/community/immich-frame/templates/docker-compose.yaml Jinja render template wiring env, healthcheck, port, storage, and permissions helper.
ix-dev/community/immich-frame/templates/test_values/basic-values.yaml CI render test values for the new app.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/init.py Vendored base library package marker.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/configs.py Vendored base library: config rendering support.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deploy.py Vendored base library: deploy/resources wrapper.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/depends.py Vendored base library: per-container depends_on rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps.py Vendored base library: dependency container factories.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_cron.py Vendored base library: cron dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_elastic.py Vendored base library: elasticsearch dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_guacd.py Vendored base library: guacd dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_mariadb.py Vendored base library: mariadb dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_meilisearch.py Vendored base library: meilisearch dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_memcached.py Vendored base library: memcached dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_mongodb.py Vendored base library: mongodb dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_perms.py Vendored base library: permissions helper container logic.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_postgres.py Vendored base library: postgres dependency container (incl. upgrade helper).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_redis.py Vendored base library: redis dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_solr.py Vendored base library: solr dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/deps_tika.py Vendored base library: tika dependency container.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/device.py Vendored base library: single device mount validation/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/device_cgroup_rules.py Vendored base library: device cgroup rule validation/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/devices.py Vendored base library: container devices manager (incl. GPU auto-add).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/dns.py Vendored base library: DNS options/search/nameserver handling.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/docker_client.py Vendored base library: docker client/network discovery wrapper.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/environment.py Vendored base library: environment variable layering/escaping.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/error.py Vendored base library: RenderError definition.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/expose.py Vendored base library: container expose ports support.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/extra_hosts.py Vendored base library: extra_hosts validation/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/formatter.py Vendored base library: dollar escaping, hashing helpers, dict merge.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/functions.py Vendored base library: template helper functions (hashing, URL parsing, etc.).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/healthcheck.py Vendored base library: healthcheck builders (curl/wget/http/etc.).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/labels.py Vendored base library: label validation/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/networks.py Vendored base library: internal/external network modeling.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/notes.py Vendored base library: x-notes generation (security/warnings/info).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/portals.py Vendored base library: x-portals generation.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/ports.py Vendored base library: port publishing/exposing and conflict checks.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/render.py Vendored base library: top-level render pipeline.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/resources.py Vendored base library: CPU/memory/GPU reservation rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/restart.py Vendored base library: restart policy rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/security_opts.py Vendored base library: security_opt management/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/storage.py Vendored base library: storage typed configs + volume mount collection.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/sysctls.py Vendored base library: sysctls validation/rendering.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tmpfs.py Vendored base library: tmpfs mount handling.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/truenas_client.py Vendored base library: TrueNAS port validation client/fallback.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/volume_mount.py Vendored base library: translates storage configs into compose mounts.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/volume_mount_types.py Vendored base library: bind/volume mount type specifics.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/volume_sources.py Vendored base library: mount source resolution (host path/ix volume/etc.).
ix-dev/community/immich-frame/templates/library/base_v2_3_5/volume_types.py Vendored base library: volume driver options for nfs/cifs/etc.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/volumes.py Vendored base library: top-level compose volumes: aggregation.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/init.py Vendored base library: test package marker.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_build_image.py Vendored base library tests: build image behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_configs.py Vendored base library tests: configs behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_depends.py Vendored base library tests: depends_on behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_device.py Vendored base library tests: devices behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_device_cgroup_rules.py Vendored base library tests: cgroup rule behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_dns.py Vendored base library tests: DNS behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_environment.py Vendored base library tests: env rendering/overrides.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_expose.py Vendored base library tests: expose behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_extra_hosts.py Vendored base library tests: extra_hosts behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_formatter.py Vendored base library tests: formatter helpers.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_functions.py Vendored base library tests: helper functions.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_labels.py Vendored base library tests: labels behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_networks.py Vendored base library tests: networks behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_notes.py Vendored base library tests: notes generation.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_portal.py Vendored base library tests: portals generation.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_render.py Vendored base library tests: render invariants.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_resources.py Vendored base library tests: resources behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_restart.py Vendored base library tests: restart policy behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_security_opts.py Vendored base library tests: security options behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_sysctls.py Vendored base library tests: sysctls behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_truenas_client.py Vendored base library tests: TrueNAS client port validation behavior.
ix-dev/community/immich-frame/templates/library/base_v2_3_5/tests/test_validations.py Vendored base library tests: filesystem/path restriction validation behavior.
cspell.config.yaml Adds immichframe to the allowed word list.

@stavros-k stavros-k marked this pull request as ready for review May 8, 2026 15:07
@stavros-k stavros-k requested a review from Qubad786 May 8, 2026 15:07
@stavros-k stavros-k merged commit b4bb650 into master May 11, 2026
11 checks passed
@stavros-k stavros-k deleted the immich-frame branch May 11, 2026 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[App Request]: Immich Frame

3 participants