You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# drupal-enterprise-stack
2
2
3
3
*[Drupal](#drupal)
4
+
*[Drush](#drush)
4
5
*[Nginx](#nginx)
5
6
*[PostgreSQL](#postgresql)
6
7
*[Redis](#redis)
@@ -10,12 +11,20 @@
10
11
11
12
*Link*: https://www.drupal.org/8
12
13
13
-
Drupal 8 comes preconfigured and heavily leverages the other services available in the docker stack. The latest release of composer will be installed during the image build.
14
+
Drupal 8 comes preconfigured and heavily leverages the other services available in the docker stack.
15
+
16
+
The latest release of composer will be installed during the image build. Composer can be called using `make composer a="$ARG"`. For example, `make composer a="require drupal/redis"` to retrieve the Redis module and its dependencies.
14
17
15
18
All included contrib modules can be found here: https://github.com/JBris/drupal-enterprise-stack/tree/master/app/modules/contrib
16
19
17
20
An example settings.php file can be found here. https://github.com/JBris/drupal-enterprise-stack/blob/master/app/sites/default/settings.php. Docker environment variables can be accessed using the `getenv()` function.
18
21
22
+
## Drush <aname="drush"/>
23
+
24
+
*Link*: https://www.drush.org/
25
+
26
+
A separate drush container has been included to execute drush commands on your Drupal instance. These can be executed using `make drush a="$ARG"`. For example, `make drush a="cr"` will clear the Drupal cache.
27
+
19
28
## Nginx <aname="nginx"/>
20
29
21
30
Nginx acts as the Drupal service's web server. The default configuration file can be found here: https://github.com/JBris/drupal-enterprise-stack/blob/master/services/nginx/conf.d/default.conf
0 commit comments