-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.example.env
More file actions
118 lines (88 loc) · 3.16 KB
/
docker-compose.example.env
File metadata and controls
118 lines (88 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#
# HTTP Server Configuration
#
# Container internal HTTP server bindings
SERVER_PORT=80
SERVER_HOST=0.0.0.0
# Local machine binding.
LOCAL_PORT=8081
#
# LDAP Configuration
#
# Required even if LDAP is not being used (see https://github.com/VEuPathDB/vdi-plugin-handler-server/issues/92)
#
# Comma separated list of ldap server hostname:port pairs that the service will
# attempt to connect to when attempting to look up oracle connection details for
# target application databases.
LDAP_SERVER=
# Base distinguished name to use when searching for LDAP entries for target
# application databases.
ORACLE_BASE_DN=
#
# Plugin Script Configuration
#
# Path to the import script/executable in the built container.
IMPORT_SCRIPT_PATH=/opt/veupathdb/bin/import
# Max duration the script will be allowed to run before being killed by the
# plugin handler service.
IMPORT_SCRIPT_MAX_DURATION=1h
# Path to the check-compatibility script/executable in the built container.
CHECK_COMPAT_SCRIPT_PATH=/opt/veupathdb/bin/check-compatibility
# Max duration the script will be allowed to run before being killed by the
# plugin handler service.
CHECK_COMPAT_SCRIPT_MAX_DURATION=5m
# Path to the install-data script/executable in the built container.
INSTALL_DATA_SCRIPT_PATH=/opt/veupathdb/bin/install-data
# Max duration the script will be allowed to run before being killed by the
# plugin handler service.
INSTALL_DATA_SCRIPT_MAX_DURATION=1h
# Path to the install-meta script/executable in the built container.
INSTALL_META_SCRIPT_PATH=/opt/veupathdb/bin/install-meta
# Max duration the script will be allowed to run before being killed by the
# plugin handler service.
INSTALL_META_SCRIPT_MAX_DURATION=1h
# Path to the uninstall script/executable in the built container.
UNINSTALL_SCRIPT_PATH=/opt/veupathdb/bin/uninstall
# Max duration the script will be allowed to run before being killed by the
# plugin handler service.
UNINSTALL_SCRIPT_MAX_DURATION=1h
#
# Script Environment Configuration
#
# Custom $PATH environment variable entries that will be appended to the $PATH
# variable passed to scripts on execution.
#
# This value should resemble a standard $PATH variable, with colon (:) separated
# paths to locations in the built container.
#
# The `$PATH` variable itself should be omitted.
#
# Example:
# CUSTOM_PATH=/opt/veupathdb/something/bin:/opt/other
CUSTOM_PATH=
# Container-internal path where the dataset install directory is mounted.
#
# In production the mount path on the host system will be something like:
# /var/www/Common/userDatasets/vdi_datasets_feat_s
DATASET_INSTALL_ROOT=/datasets
# Site build string.
#
# This value is used to construct paths into the dataset installation directory
# tree.
SITE_BUILD=build-65
#
# Database Connection Configurations
#
DB_CONNECTION_NAME_DEMO=DemoDB
# oracle or postgres
DB_CONNECTION_PLATFORM_DEMO=oracle
DB_CONNECTION_PASS_DEMO=someDBPass
DB_CONNECTION_POOL_SIZE_DEMO=5
DB_CONNECTION_DATA_SCHEMA_DEMO=vdi_datasets_dev_n
DB_CONNECTION_CONTROL_SCHEMA_DEMO=vdi_control_dev_n
# Raw connection details
DB_CONNECTION_HOST_DEMO=
DB_CONNECTION_PORT_DEMO=
DB_CONNECTION_DB_NAME_DEMO=
# LDAP connection details
DB_CONNECTION_LDAP_DEMO=demo063n