-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.docker_compose_env_https_selenium
More file actions
117 lines (94 loc) · 5.68 KB
/
.docker_compose_env_https_selenium
File metadata and controls
117 lines (94 loc) · 5.68 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
# This file contains default values for environment values that are needed either by Docker Compose itself
# or by the docker compose files.
# COMPOSE_PROJECT_NAME declares the prefix of the name of the Docker containers. So if the
# project name is 'acme_support' then the web container is named either 'acme_support_web_1' for
# Compose V1 or 'acme_support-web-1 for Compose V2. The project name also declares
# the prefix of named volumes. Thus changing the project name allows to have
# seperate containers and volumes for separate installations of OTOBO.
#
# Note that when COMPOSE_PROJECT_NAME is set in the shell environment,
# then that setting has higher precedence.
COMPOSE_PROJECT_NAME=otobo
#COMPOSE_PROJECT_NAME=acme_support
# COMPOSE_FILE is a collection of files, separated by COMPOSE_PATH_SEPARATOR, that make up the final config.
# These files usually reside in the subdirectory docker-compose.
#
# Additional services can be added by concatenating more files to COMPOSE_FILE. An example would services
# for S3 compatible storage. That is: :docker-compose/otobo-localstack.yml or :docker-compose/otobo-minio.yml.
# An OpenLDAP server for use by the unit tests can be activated by appending :docker-compose/testing/openldap.yml.
COMPOSE_PATH_SEPARATOR=:
COMPOSE_FILE=docker-compose/otobo-base.yml:docker-compose/otobo-override-https.yml:docker-compose/otobo-selenium.yml
# Database configuration
# OTOBO_DB_ROOT_PASSWORD must be set
OTOBO_DB_ROOT_PASSWORD=
# Set this to a value in bytes to overwrite the default query size set for OTOBO
#OTOBO_DB_QUERY_CACHE_SIZE=
# HTTP options
# In the HTTPS case http:// redirects to https://
# Set OTOBO_WEB_HTTP_PORT when the HTTP port is not 80
#OTOBO_WEB_HTTP_PORT=<your special port>
# Set OTOBO_WEB_HTTP_IPADDR when only requests addressed to a specific IP should be served.
# See https://docs.docker.com/compose/compose-file/compose-file-v3/#ports
#OTOBO_WEB_HTTP_IPADDR=<your special ip address>
# The option OTOBO_WEB_OPTION influences which webserver is used with which options.
# The default value is 'deployment'
#OTOBO_WEB_OPTION=deployment # the default, should be used in production and most times during development
#OTOBO_WEB_OPTION=development # can be useful during development, sets PLACK_ENV to 'development'
#OTOBO_WEB_OPTION=shotgun # use the shotgun, start a new process for every request
# HTTPS options
# set OTOBO_WEB_HTTPS_PORT when the HTTPS port is not 443
#OTOBO_WEB_HTTPS_PORT=<your special port>
# Set OTOBO_WEB_HTTPS_IPADDR when only requests addressed to a specific IP should be served.
# See https://docs.docker.com/compose/compose-file/compose-file-v3/#ports
#OTOBO_WEB_HTTPS_IPADDR=<your special ip address>
# The settings OTOBO_NGINX_SSL_CERTIFICATE and OTOBO_NGINX_SSL_CERTIFICATE_KEY
# are mandatory when HTTPS is used.
# The configured pathes must be absolute pathes that are available in the container.
#OTOBO_NGINX_SSL_CERTIFICATE=/etc/nginx/ssl/ssl-cert.crt
#OTOBO_NGINX_SSL_CERTIFICATE_KEY=/etc/nginx/ssl/ssl-key.key
OTOBO_NGINX_SSL_CERTIFICATE=
OTOBO_NGINX_SSL_CERTIFICATE_KEY=
# Elasticsearch options
OTOBO_ELASTICSEARCH_ES_JAVA_OPTS=-Xms512m -Xmx512m
################################################################################
# The Docker image for the service 'db' can be specified explicitly.
# The default is mariadb:lts-noble
################################################################################
#OTOBO_IMAGE_DB=
################################################################################
# The Docker image for the services 'web' and 'daemon' can be specified explicitly.
# The default is rotheross/otobo:latest-11_0
################################################################################
# Examples:
#OTOBO_IMAGE_OTOBO=rotheross/otobo:rel-11_0_16
#OTOBO_IMAGE_OTOBO=rotheross/otobo:devel-rel-11_0
#OTOBO_IMAGE_OTOBO=otobo:local-11.0.x
################################################################################
# The Docker image for the service 'eleastic' can be specified explicitly.
# The default is rotheross/otobo-elasticsearch:latest-11_0
################################################################################
# Examples:
#OTOBO_IMAGE_OTOBO_ELASTICSEARCH=rotheross/otobo-elasticsearch:rel-11_0_16
#OTOBO_IMAGE_OTOBO_ELASTICSEARCH=rotheross/otobo-elasticsearch:devel-rel-11_0
#OTOBO_IMAGE_OTOBO_ELASTICSEARCH=otobo-elasticsearch:local-11.0.x
################################################################################
# The Docker image for the service 'redis' can be specified explicitly.
# The default is redis:8-bookworm
################################################################################
#OTOBO_IMAGE_REDIS=
################################################################################
# The Docker image for the service 'nginx' can be specified explicitly.
# The default image is rotheross/otobo-nginx-webproxy:latest-11_0
################################################################################
# Examples:
#OTOBO_IMAGE_OTOBO_NGINX=rotheross/otobo-nginx-webproxy:rel-11_0_16
#OTOBO_IMAGE_OTOBO_NGINX=rotheross/otobo-nginx-webproxy:devel-rel-11_0
#OTOBO_IMAGE_OTOBO_NGINX=otobo-nginx-webproxy:local-11.0.x
################################################################################
# The Docker image for the service 'selenium' can be specified explicitly.
# The default image is rotheross/otobo-selenium-chrome:latest-11_0
################################################################################
# Examples:
#OTOBO_IMAGE_OTOBO_SELENIUM_CHROME=rotheross/otobo-selenium-chrome:rel-11_0_16
#OTOBO_IMAGE_OTOBO_SELENIUM_CHROME=rotheross/otobo-selenium-chrome:devel-rel-11_0
#OTOBO_IMAGE_OTOBO_SELENIUM_CHROME=otobo-selenium-chrome:local-11.0.x