-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
66 lines (58 loc) · 1.37 KB
/
example.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
VOLUMES_DRIVER=local
NETWORKS_DRIVER=bridge
APPLICATION_ENV=local
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=./apps
# Point to where the `APP_CODE_PATH_HOST` should be in the container
APP_CODE_PATH_CONTAINER=/var/www
# Point to the path of your database storage on your host
DATA_PATH_HOST=./storage/database
# You may add flags to the path `:cached`, `:delegated`.
# When using Docker Sync add `:nocopy`
APP_CODE_CONTAINER_FLAG=:cached
# Application Timezone
APP_TIMEZONE=Europe/Paris
##
# [NODEJS]
##
NODE_VERSION=11.11.0
NODE_SUPERVISORD_PATH=./docker/node/supervisor/supervisor.d
##
# [NGINX]
##
NGINX_HOST_HTTP_PORT=80
NGINX_HOST_HTTPS_PORT=443
NGINX_CONF_PATH=./docker/nginx/nginx.conf
NGINX_VHOSTS_PATH=./docker/nginx/vhosts
NGINX_CONFD_PATH=./docker/nginx/conf.d
NGINX_SNIPPETS_PATH=./docker/nginx/snippets
NGINX_SSL_PATH=./storage/ssl/
##
# [PHP FPM/CLI]
##
PHP_VERSION=7.3.2
PHP_INI_OVERRIDE_PATH=./docker/php/php-ini-overrides.ini
PHP_SUPERVISORD_PATH=./docker/php/supervisor/supervisor.d
##
# [MARIADB]
##
MARIADB_MY_CNF=./docker/mariadb/my.cnf
MARIADB_ROOT_PASSWORD=root
MARIADB_DATABASE=app
MARIADB_USER=app
MARIADB_PASSWORD=app
MARIADB_PORT=3306
##
# REDIS
##
REDIS_PORT=6379
##
# ELASTICSEARCH
##
ELASTICSEARCH_HOST_HTTP_PORT=9200
ELASTICSEARCH_HOST_TRANSPORT_PORT=9300
ELASTICSEARCH_MAX_MEMORY_SIZE=512m
##
# KIBANA
##
KIBANA_HTTP_PORT=5601