-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.env.example
63 lines (45 loc) · 1.75 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
#
# .env file:
#
# Provides your project with environment variables that are specific to your local
# environment. Sourced automatically from docker-compose. The .env file should never
# be committed. Copy .env.example to .env and set these variables.
# Inject a Terminus machine token into the Docker container.
#
# Allows Terminus to run inside of the container so you can access Pantheon for
# database backups.
# TERMINUS_MACHINE_TOKEN=xyz
# Set custom exposed ports for your containers:
#
# This is necessary if you have more than one scaffold site running at once, since
# you can only have one application listening to a given port. What is listed below
# are the default values.
# DRUPAL_PORT=8080
# MANNEQUIN_PORT=8081
# MYSQL_PORT=33306
# VARNISH_PORT=8085
# SOLR_PORT=8983
# Set a docker caching specification for the code mount.
#
# File access in hosted volumes can be very slow on Mac due to issues with the
# filesystem. Using cached or delegated here can really speed things up, but
# this isn't a cross-platform feature.
# See https://docs.docker.com/compose/compose-file/#caching-options-for-volume-mounts-docker-for-mac
# VOLUME_FLAGS=cached
# Enable or disable XDebug.
#
# XDebug slows performance down quite a bit. You can toggle it on and off by setting
# this environment variable to 1 or 0, then running `docker-compose up -d drupal` to
# recreate the container.
# XDEBUG_ENABLE=1
# Inject XDebug overrides into your docker containers:
#
# Only takes effect if XDEBUG_ENABLE is set.
# XDEBUG_CONFIG=remote_host=host.docker.internal
# Inject Blackfire credentials into your docker containers.
#
# This allows you to do profiling using the Blackfire CLI.
# BLACKFIRE_CLIENT_ID=
# BLACKFIRE_CLIENT_TOKEN=
# BLACKFIRE_SERVER_ID=
# BLACKFIRE_SERVER_TOKEN=