From e0629f988bdb6f03089014665d0423e62e8d62bf Mon Sep 17 00:00:00 2001 From: jslocomotor <210083531+jslocomotor@users.noreply.github.com> Date: Thu, 7 May 2026 09:29:27 +0200 Subject: [PATCH] fix(compose): configure chromium binary path for print designer --- compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compose.yaml b/compose.yaml index 5920e6d3..d8388e90 100644 --- a/compose.yaml +++ b/compose.yaml @@ -25,6 +25,7 @@ services: - -c # add redis_socketio for backward compatibility command: + # chromium_binary_path: Temporary compatibility fix for Print Designer until https://github.com/frappe/print_designer/pull/523 - > ls -1 apps > sites/apps.txt; bench set-config -g db_host $$DB_HOST; @@ -34,6 +35,7 @@ services: bench set-config -g redis_socketio "redis://$$REDIS_QUEUE"; bench set-config -gp socketio_port $$SOCKETIO_PORT; bench set-config -g chromium_path /usr/bin/chromium-headless-shell; + bench set-config -g chromium_binary_path /usr/bin/chromium-headless-shell; environment: DB_HOST: ${DB_HOST:-} DB_PORT: ${DB_PORT:-}