forked from pvtl/docker-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (37 loc) · 1.24 KB
/
Copy path.env.example
File metadata and controls
43 lines (37 loc) · 1.24 KB
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
# Where do you websites live?
# eg. MacOS: ~/Sites/
# eg. Windows: /c/Users/Matt/Sites
# eg. Linux: /var/www/
DOCUMENTROOT=~/Sites/
# What is the hostname for your sites (eg. http://<site>.localhost)? Default: localhost
APACHE_HOSTNAME=localhost
# Custom User Name, UID (User ID) and GID (Group ID)
# Windows WSL & Linux:
# - These should match the user/group ID's on your host system (ie. run the "id" command)
# - For single-user machines, this is typically 1000 & 1000
# MacOS:
# - These numbers are inconsequential
# - Typically best to keep them as 1000 & 1000, so they don't conflict with existing GID/UIDs
CUSTOM_USER_NAME=dev
CUSTOM_UID=1000
CUSTOM_GID=1000
# When should Docker restart? (no | always | on-failure | unless-stopped)
DOCKER_RESTART=no
# What is the root password for MySQL? Default: dbroot
MYSQL_ROOT_PASSWORD=dbroot
# Additional commands (eg. "EXTRA_CMDS_PHP74=apt install sox" will install sox in PHP74)
EXTRA_CMDS_APACHE=
EXTRA_CMDS_MYSQL=
EXTRA_CMDS_PHP56=
EXTRA_CMDS_PHP70=
EXTRA_CMDS_PHP71=
EXTRA_CMDS_PHP72=
EXTRA_CMDS_PHP73=
EXTRA_CMDS_PHP74=
EXTRA_CMDS_PHP80=
# What are your Blackfire credentials?
BLACKFIRE_CLIENT_ID=xxx
BLACKFIRE_CLIENT_TOKEN=xxx
BLACKFIRE_SERVER_ID=xxx
BLACKFIRE_SERVER_TOKEN=xxx
BLACKFIRE_LOG_LEVEL=4