-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env-sample
63 lines (54 loc) · 1.61 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
58
59
60
61
62
63
#
# 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-symfony
#
PHPVERSION=7.4
#
# Choose what version of Nginx and Symfony you want. To see which versions are available
# see https://github.com/dockerwest/nginx-symfony
#
NGINXVERSION=stable
#
# Choose your NodeJS version. To see which versions are available see
# https://github.com/dockerwest/nodejs
#
NODEVERSION=10
#
# set the symfony version, 3 and below use 3, 4 and above must use 4. Since the
# intorduction of symfony4 there were some changes where web accessible files
# are stored
#
SYMFONYVERSION=4
#
# This setting defines what the hostname will be you can browse your Symfony
# app. The example configuration will be give you http://application.docker.
#
BASEHOST=sylius.docker
# comma separated to the EXTRAHOSTS variable, when not needed you must at least
# add something, let us default to www.${BASEHOST}
EXTRAHOSTS=www.sylius.docker
#
# Choose whatever you want to use as default mysql root password.
#
MYSQL_ROOT_PASSWORD=toor
#
# A relative or absolute path to your application 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