We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6c4b8b + eee6ce7 commit 0ae1adfCopy full SHA for 0ae1adf
skeleton/docker-entrypoint.sh
@@ -6,9 +6,10 @@ if [ -z "${PIP_PARAMS}" ]; then
6
PIP_PARAMS=""
7
fi
8
9
-# CLIENT HOME
10
-CLIENT_HOME="/data/$(hostname)/$(hostid)"
11
-export CLIENT_HOME=$CLIENT_HOME
+if [ -z "${CLIENT_HOME}" ]; then
+ CLIENT_HOME="/data/$(hostname)/$(hostid)"
+ export CLIENT_HOME=$CLIENT_HOME
12
+fi
13
14
USER="$(id -u)"
15
skeleton/etc/zope.conf
@@ -1,6 +1,9 @@
1
%define INSTANCE /app
2
instancehome $INSTANCE
3
4
+%define CLIENTHOME $(CLIENT_HOME)
5
+clienthome $CLIENTHOME
+
debug-mode $(DEBUG_MODE)
security-policy-implementation $(SECURITY_POLICY_IMPLEMENTATION)
verbose-security $(VERBOSE_SECURITY)
0 commit comments