forked from Islandora-Devops/isle-dc
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsample.env
91 lines (76 loc) · 3.24 KB
/
sample.env
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
# Environment variables defined in this file apply to both the Makefile and to
# docker-compose.yml
#
# Due to restrictions in the `env-file` format we cannot specify multi-line
# values for environment variables. For this reason the environment
# variables are set on service definitions in the docker-compose.*.yml files,
# rather than defined in `env-file` files.
# Determines which docker-compose file(s) will be used for the `drupal` service.
# See documentation for more details.
ENVIRONMENT=demo
###############################################################################
# Environment variables specific to composer.
###############################################################################
COMPOSE_HTTP_TIMEOUT=480
# Also used for naming services in traefik as well as defining network alias and urls.
# For example the `drupal` service will be found at `islandora.${COMPOSE_PROJECT_NAME}.${DRUPAL_SITE_HOST}`.
# See https://docs.docker.com/compose/reference/envvars/
COMPOSE_PROJECT_NAME=isle-dc
# If you are running locally, leave this. traefik.me resolves to localhost.
# If you are deploying to a remote server and you own a domain for it, place it here.
# If you have an IP but no domain, change this to X-X-X-X.traefik.me, where X-X-X-X
# is your IP address but with hyphens instead of dots.
DRUPAL_SITE_HOST=traefik.me
# Allows building custom image with buildkit.
COMPOSE_DOCKER_CLI_BUILD=1
DOCKER_BUILDKIT=1
# Dockerfile to use when building the custom project.
PROJECT_DRUPAL_DOCKERFILE=Dockerfile
# Includes `traefik` as a service, if false assume we are sharing a traefik
# from another project.
INCLUDE_TRAEFIK_SERVICE=true
# Includes `watchtower` as a service.
INCLUDE_WATCHTOWER_SERVICE=true
# Includes `etcd` as a service.
INCLUDE_ETCD_SERVICE=false
# Choose which database backend to use: mariadb/postgresql
# Services that only support MySQL (Matomo) do not have the option to change.
# Also at this time not all Drupal modules work with PostgresSQL, it is provided
# as option here so it can be tested and fixed at some later date.
DRUPAL_DATABASE_SERVICE=mariadb
FCREPO_DATABASE_SERVICE=mariadb
GEMINI_DATABASE_SERVICE=mariadb
# Repository to use for pulling isle-buildkit images, change to `local`
# To use images you have built locally with isle-buildkit, or use your
# custom docker registry if you have set up one.
#
REPOSITORY=islandora
# The version of the isle-buildkit images, non isle-buildkit images have
# their versions specified explicitly in their respective docker-compose files.
TAG=latest
# PHP variables
PHP_DEFAULT_SOCKET_TIMEOUT=3600
PHP_MAX_EXECUTION_TIME=3600
PHP_MAX_FILE_UPLOADS=20
PHP_MAX_INPUT_TIME=3600
PHP_MEMORY_LIMIT=256M
PHP_POST_MAX_SIZE=128M
PHP_PROCESS_CONTROL_TIMEOUT=3600
PHP_REQUEST_TERMINATE_TIMEOUT=3600
PHP_UPLOAD_MAX_FILESIZE=128M
# nginx variables
NGINX_CLIENT_BODY_TIMEOUT=3600
NGINX_FASTCGI_READ_TIMEOUT=3600
NGINX_FASTCGI_SEND_TIMEOUT=3600
NGINX_FASTCGI_CONNECT_TIMEOUT=3600
NGINX_KEEPALIVE_TIMEOUT=3600
NGINX_LINGERING_TIMEOUT=3600
NGINX_PROXY_READ_TIMEOUT=3600
NGINX_PROXY_SEND_TIMEOUT=3600
NGINX_PROXY_CONNECT_TIMEOUT=3600
NGINX_SEND_TIMEOUT=3600
# Alpaca timeouts
ALPACA_HTTP_CONNECTION_REQUEST_TIMEOUT_MS=7200000
ALPACA_HTTP_CONNECT_TIMEOUT_MS=7200000
ALPACA_HTTP_SOCKET_TIMEOUT_MS=7200000
ACTIVEMQ_WEB_PORT=8161