forked from shyim/shopware-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dist
64 lines (45 loc) · 1.32 KB
/
.env.dist
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
# Copy me to $HOME/.config/swdc/env to modify configuration
# Default domain. Each folder will be an subdomain of this domain
DEFAULT_DOMAIN="dev.localhost"
# Use ssl as default
USE_SSL_DEFAULT=false
# Persistent Database?
PERSISTENT_DATABASE=true
# Will delegate some folders like /var/cache to the machine
# and will cache folders like /media on the host
CACHE_VOLUMES=false
# Elasticsearch
ENABLE_ELASTICSEARCH=false
# See https://www.docker.elastic.co/ for tags
ELASTICSEARCH_VERSION="6.8.1"
# Redis
ENABLE_REDIS=false
# S3 compatible Server
ENABLE_MINIO=false
# Possible values are 7.1, 7.2, 7.3, 7.4
PHP_VERSION=7.2
# Possible values are ghcr.io/shyim/shopware-docker/mysql:57, ghcr.io/shyim/shopware-docker/mysql:8 for MySQL configured versions
# Also possible offical images like mysql:X mariadb:X
MYSQL_VERSION=ghcr.io/shyim/shopware-docker/mysql:8
# Expose mysql port to host
EXPOSE_MYSQL_LOCAL=true
# Http port
HTTP_PORT=80
# Https port
HTTPS_PORT=443
# Possible values are adminer / phpmyadmin
DATABASE_TOOL=adminer
# Selenium Server
ENABLE_SELENIUM=false
# Cypres support
ENABLE_CYPRESS=false
# Source code root directory
CODE_DIRECTORY="$HOME/Code"
# Blackfire configurations
ENABLE_BLACKFIRE=false
BLACKFIRE_SERVER_ID=
BLACKFIRE_SERVER_TOKEN=
BLACKFIRE_CLIENT_ID=
BLACKFIRE_CLIENT_TOKEN=
# Varnish
ENABLE_VARNISH=false