-
Notifications
You must be signed in to change notification settings - Fork 8
/
.env-sample
69 lines (59 loc) · 1.72 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
64
65
66
67
68
69
#
# 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-pimcore
#
PHPVERSION=8.0
#
# Choose what version of Nginx you want. To see which versions are available
# see https://github.com/dockerwest/nginx-pimcore
#
NGINXVERSION=stable
#
# Choose your NodeJS version. To see which versions are available see
# https://github.com/dockerwest/nodejs
#
NODEVERSION=10
#
# set the pimcore version, 4 and below use 4, 5 and above must use 5. Since
# pimcore5 was based on symfony there are some critical differences in the
# nginx configurations
#
PIMCOREVERSION=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=pimcore.docker
# comma separated to the EXTRAHOSTS variable, when not needed you must at least
# add something, let us default to www.${BASEHOST}
EXTRAHOSTS=www.pimcore.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=../pimcore
#
# The `DEVELOPMENT` environment variable wich will enable xdebug, composer and
# enable timestamp checking in opcache.
#
DEVELOPMENT=1
#
# Choose your MySQL version. To see which versions are available see
# https://github.com/docker-library/mysql
#
MYSQLVERSION=8
#
# Set the default window manager when running the environment
# Available options are: tmux, screen and byobu
#
WINDOW_MANAGER=tmux