use pull policy for hocuspocus image too, add variable to .env.example for visibility

This commit is contained in:
Markus Kahl
2026-02-02 13:06:46 +00:00
parent 7ad3f7b59f
commit 7898ebd4f1
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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}"