Skip to content

Commit

Permalink
Merge release/v8.1.0 into master (#110)
Browse files Browse the repository at this point in the history
* Merge release/v8.1.0 into master

* And the ability to separate cache and service files (#112)

* Add jq into utils (#114)

---------

Co-authored-by: Valeria Bagisheva <[email protected]>
  • Loading branch information
VyacheslavSemin and lemmav committed Jun 24, 2024
1 parent a9db088 commit fb67fe8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PRODUCT_EDITION=
# Unless otherwise specified, the latest up-to-date version will be used
# Example:
# RELEASE_VERSION=-7.2.2
RELEASE_VERSION=-8.0.1
RELEASE_VERSION=-8.1.0

# Prefix in the name of your repository in Docker Hub
PREFIX_NAME=docs
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ FROM python:3.11 AS builder
RUN pip install redis psycopg2 PyMySQL pika python-qpid-proton func_timeout requests kubernetes flask
FROM python:3.11-slim AS utils
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
RUN apt update && apt install -y postgresql-client default-mysql-client curl wget && \
RUN apt update && apt install -y postgresql-client default-mysql-client curl wget jq && \
curl -LO \
https://storage.googleapis.com/kubernetes-release/release/`curl \
-s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl && \
Expand Down
11 changes: 10 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,17 @@ export NODE_CONFIG='{
},
"storage": {
"fs": {
"folderPath": "/var/lib/'${COMPANY_NAME}'/documentserver/App_Data/cache/files/'${STORAGE_SUBDIRECTORY_NAME:-latest}'",
"secretString": "'${SECURE_LINK_SECRET:-verysecretstring}'"
}
},
"storageFolderName": "files/'${STORAGE_SUBDIRECTORY_NAME:-latest}'"
},
"persistentStorage": {
"fs": {
"folderPath": "/var/lib/'${COMPANY_NAME}'/documentserver/App_Data/cache/files",
"secretString": "'${SECURE_LINK_SECRET:-verysecretstring}'"
},
"storageFolderName": "files"
}
}'

Expand Down

0 comments on commit fb67fe8

Please sign in to comment.