mirror of
https://github.com/ONLYOFFICE/Docker-DocumentServer.git
synced 2026-04-07 14:01:38 +08:00
Merge branch hotfix/v9.0.3 into develop
This commit is contained in:
7
.github/workflows/stable-build.yml
vendored
7
.github/workflows/stable-build.yml
vendored
@ -69,6 +69,13 @@ jobs:
|
|||||||
exit 0
|
exit 0
|
||||||
shell: bash
|
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:
|
build-nonexample:
|
||||||
name: "Release image: DocumentServer${{ matrix.edition }}-nonExample"
|
name: "Release image: DocumentServer${{ matrix.edition }}-nonExample"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@ -657,6 +657,10 @@ for i in ${DS_LOG_DIR} ${DS_LOG_DIR}-example ${LIB_DIR}; do
|
|||||||
chmod -R 755 "$i"
|
chmod -R 755 "$i"
|
||||||
done
|
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
|
if [ ${ONLYOFFICE_DATA_CONTAINER_HOST} = "localhost" ]; then
|
||||||
|
|
||||||
read_setting
|
read_setting
|
||||||
|
|||||||
Reference in New Issue
Block a user