-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
97 lines (73 loc) · 2.32 KB
/
.env.example
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
#
# Copy and rename this file to .env at root of this project.
#
# A common use case is to supply database creds via the environment. Edit settings.php
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('DB_NAME'),
# 'driver' => 'mysql',
# 'host' => getenv('DB_HOST'),
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('drupal'),
# 'port' => getenv('DB_PORT'),
# 'prefix' => '',
# 'username' => getenv('DB_USER'),
# ];
#
# Another common use case is to set Drush's --uri via environment.
DRUSH_OPTIONS_URI=http://pece.example.com
### Documentation available at https://wodby.com/docs/stacks/drupal/local
### Changelog can be found at https://github.com/wodby/docker4drupal/releases
### Images tags format explained at https://github.com/wodby/docker4drupal#images-tags
### PROJECT SETTINGS
PROJECT_NAME=my_pece_project
PROJECT_BASE_URL=pece.example.com
## Put here your fork link here or use this PECE distro
PROJECT_GIT=https://github.com/PECE-project/pece-distro.git
# => Example downloading a development version by setting a specific branch
# PROJECT_GIT=https://github.com/PECE-project/drupal-pece.git --branch=2.x
## Put here your sys admin email
SYSADMIN_MAIL=
# Use this command to create hash password, replace username and password
# echo $(htpasswd -nb username password)
# If htpasswd command is not available you can use the anternative below
# printf "<username_here>:$(openssl passwd -5 <password_here>)\n"
TRAEFIK_ACCESS_HASH=
DB_NAME=pece
DB_USER=pece
DB_PASSWORD=pece
DB_ROOT_PASSWORD=password
DB_HOST=mariadb
DB_DRIVER=mysql
DB_PORT=3306
### --- MARIADB ----
MARIADB_TAG=11-3.30.0
#MARIADB_TAG=10.4-3.9.4
### --- VANILLA DRUPAL ----
DRUPAL_TAG=8.2
#DRUPAL_TAG=8.1
### --- PHP ----
# Linux (uid 1000 gid 1000)
PHP_TAG=8.3
#PHP_TAG=7-4.36.1
# macOS (uid 501 gid 20)
#PHP_TAG=8.3-dev-macos
### --- NGINX ----
NGINX_TAG=1.27-5.39.10
NGINX_VHOST_PRESET=drupal8
#NGINX_VHOST_PRESET=drupal7
### --- SOLR ---
SOLR_CONFIG_SET="search_api_solr_8.x-2.7"
#SOLR_CONFIG_SET="search_api_solr_8.x-1.2"
#SOLR_CONFIG_SET="search_api_solr_7.x-1.14"
SOLR_TAG=7.7-4.18.2
#SOLR_TAG=7.7-3.1.1
#SOLR_TAG=7.6-3.1.1
#SOLR_TAG=7.5-3.1.1
#SOLR_TAG=6.6-3.1.1
#SOLR_TAG=5.5-3.1.1
### --- ELASTICSEARCH ---
ELASTICSEARCH_TAG=7.17-5.19.11
#ELASTICSEARCH_TAG=6.7-4.1.2
#ELASTICSEARCH_TAG=5.6-4.1.2