From dabe8466acf6f0efdbe3ef8c70fae9957d53d3ab Mon Sep 17 00:00:00 2001 From: Rohit Mulani <289630555+rohitmulani63-ops@users.noreply.github.com> Date: Tue, 7 Jul 2026 23:38:00 +0400 Subject: [PATCH] Align FileRun compose with upstream runtime settings --- blueprints/filerun/docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/blueprints/filerun/docker-compose.yml b/blueprints/filerun/docker-compose.yml index 0f1d3646..78b164f3 100644 --- a/blueprints/filerun/docker-compose.yml +++ b/blueprints/filerun/docker-compose.yml @@ -4,9 +4,11 @@ services: filerun: image: filerun/filerun:latest restart: unless-stopped - user: "1001:1001" + user: "99:100" depends_on: - db + links: + - db:db environment: FR_DB_HOST: db FR_DB_PORT: 3306 @@ -20,6 +22,7 @@ services: db: image: mariadb:12.2 restart: unless-stopped + command: --old-mode=NO_PROGRESS_INFO environment: MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD} MYSQL_USER: ${MYSQL_USER}