From 4edbb9004dcb76af027d8c69438531c88fcfc629 Mon Sep 17 00:00:00 2001 From: alexz Date: Sat, 11 Apr 2026 09:04:06 +0000 Subject: [PATCH] Fix OnlyOffice internal port to 80 and healthcheck --- apps/onlyoffice-docs/docker-compose.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/onlyoffice-docs/docker-compose.json b/apps/onlyoffice-docs/docker-compose.json index bdac426..bc04225 100644 --- a/apps/onlyoffice-docs/docker-compose.json +++ b/apps/onlyoffice-docs/docker-compose.json @@ -5,7 +5,7 @@ "name": "onlyoffice-docs", "image": "onlyoffice/documentserver:8.2", "isMain": true, - "internalPort": 8044, + "internalPort": 80, "dependsOn": { "onlyoffice-docs-db": { "condition": "service_healthy" @@ -57,7 +57,7 @@ } ], "healthCheck": { - "test": "curl -f http://localhost:8044/healthcheck", + "test": "curl -f http://localhost/healthcheck", "interval": "30s", "timeout": "10s", "retries": 3,