From 7898ebd4f1dfc14e908c87f2737b118e4e6a799d Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Mon, 2 Feb 2026 13:06:46 +0000 Subject: [PATCH] use pull policy for hocuspocus image too, add variable to .env.example for visibility --- .env.example | 1 + docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index f888dce..3830b3e 100644 --- a/.env.example +++ b/.env.example @@ -8,6 +8,7 @@ # TAG=dev HOCUSPOCUS_TAG=dev-latest +PULL_POLICY=always # always / missing / never OPENPROJECT_HTTPS=false OPENPROJECT_HOST__NAME=localhost PORT=127.0.0.1:8080 diff --git a/docker-compose.yml b/docker-compose.yml index 86eb244..7fc2828 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -121,7 +121,7 @@ services: hocuspocus: image: openproject/hocuspocus:${HOCUSPOCUS_TAG:-dev-latest} - pull_policy: always + pull_policy: "${PULL_POLICY:-always}" environment: SECRET: ${COLLABORATIVE_SERVER_SECRET:-OVERRIDE_ME_PLEASE} OPENPROJECT_URL: "${OPENPROJECT_URL:-http://web:8080}"