-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env-sample
57 lines (49 loc) · 1.41 KB
/
.env-sample
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
#
# Configure what UID and GID your PHP container must use. This usually should
# match your Hosts UID and GID. To find your local UID you can run id -u and
# to find your local GID you can run id -g.
#
C_UID=1000
C_GID=1000
#
# Choose your PHP version. To see which versions are available see
# https://github.com/dockerwest/php-laravel
#
PHPVERSION=7.4
#
# Choose what version of Nginx you want. To see which versions are available
# see https://github.com/dockerwest/nginx-laravel
#
NGINXVERSION=stable
#
#
# Choose your NodeJS version. To see which versions are available see
# https://github.com/dockerwest/nodejs
#
NODEVERSION=10
#
# This setting defines what the hostname will be you can browse your pimcore app.
# The example configuration will be give you http://pimcore.docker.
#
BASEHOST=application.docker
# comma separated to the EXTRAHOSTS variable, when not needed you must at least
# add something, let us default to www.${BASEHOST}
EXTRAHOSTS=www.application.docker
#
# Choose whatever you want to use as default mysql root password.
#
MYSQL_ROOT_PASSWORD=toor
#
# A relative or absolute path to your pimcore code.
#
APPLICATION=../application
#
# The `DEVELOPMENT` environment variable wich will enable xdebug, composer and
# enable timestamp checking in opcache.
#
DEVELOPMENT=1
#
# Set the default window manager when running the environment
# Available options are: tmux, screen and byobu
#
WINDOW_MANAGER=tmux