From 7bed2eb61360ae09cd1bcd154408e25a78348110 Mon Sep 17 00:00:00 2001 From: timefrance <68469764+timefrance@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:00:56 +0200 Subject: [PATCH] Update the containers on boot Adding `OPTION container=boot args:--pull` in the Makejail did not update the containers for me. But adding the option `- container: 'boot args:--pull'` in the appjail-director.yml for each container worked better. --- README.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.j2 b/README.j2 index 682e1cb..538d578 100644 --- a/README.j2 +++ b/README.j2 @@ -202,6 +202,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu priority: 100 options: - from: {{ registry }}/immich-server:latest + - container: 'boot args:--pull' volumes: - immich-data: /data oci: @@ -216,6 +217,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu name: immich_machine_learning options: - from: {{ registry }}/immich-ml:latest + - container: 'boot args:--pull' oci: environment: - HF_HOME: /cache/huggingface @@ -227,6 +229,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu name: immich_redis options: - from: {{ registry }}/redis:latest + - container: 'boot args:--pull' oci: environment: - LANG: C.UTF-8 @@ -238,6 +241,7 @@ Before deploying, ensure your host environment is ready. See the [Quick Start Gu options: - from: {{ registry }}/immich-postgres:latest - template: !ENV '${PWD}/immich-postgres-template.conf' + - container: 'boot args:--pull' oci: environment: - POSTGRES_PASSWORD: !ENV '${DB_PASSWORD}'