From 23dc78fab401ce591c5d8b72e8f81b48e436e966 Mon Sep 17 00:00:00 2001 From: Evgeniy Antonyuk Date: Fri, 27 Jun 2025 14:06:13 +0300 Subject: [PATCH 1/2] fix Bug 75324 - Update permissions for runtime.json --- run-document-server.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run-document-server.sh b/run-document-server.sh index d338512..2d43099 100644 --- a/run-document-server.sh +++ b/run-document-server.sh @@ -657,6 +657,10 @@ for i in ${DS_LOG_DIR} ${DS_LOG_DIR}-example ${LIB_DIR}; do chmod -R 755 "$i" done +# Bug 75324 - Update permissions for runtime.json +AI_CONFIG_FILE="${DATA_DIR}/runtime.json" +[ -f "${AI_CONFIG_FILE}" ] && { chown ds:ds "${AI_CONFIG_FILE}" && chmod 644 "${AI_CONFIG_FILE}"; } + if [ ${ONLYOFFICE_DATA_CONTAINER_HOST} = "localhost" ]; then read_setting From 7f46a5be42ca278982e4bceb34d8c171b8852532 Mon Sep 17 00:00:00 2001 From: Nasrullo Nurullaev Date: Wed, 2 Jul 2025 12:43:29 +0500 Subject: [PATCH 2/2] Add step to update Docker Hub README --- .github/workflows/stable-build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/stable-build.yml b/.github/workflows/stable-build.yml index b89b847..dae253c 100644 --- a/.github/workflows/stable-build.yml +++ b/.github/workflows/stable-build.yml @@ -69,6 +69,13 @@ jobs: exit 0 shell: bash + - name: Update Docker Hub README + uses: peter-evans/dockerhub-description@v4 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + repository: ${{ env.COMPANY_NAME }}/${{ env.PRODUCT_NAME }}${{ matrix.edition }} + build-nonexample: name: "Release image: DocumentServer${{ matrix.edition }}-nonExample" runs-on: ubuntu-latest