-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
53 lines (53 loc) · 1.43 KB
/
docker-compose.yml
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
version: "3.8"
services:
mysql:
image: mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: 'shopware'
MYSQL_USER: shopware
MYSQL_PASSWORD: shopware
MYSQL_DATABASE: shopware
volumes:
- mysql-data:/var/lib/mysql
shopware:
image: shyim/shopware:latest
environment:
APP_SECRET: 440dec3766de53010c5ccf6231c182acfc90bd25cff82e771245f736fd276518
INSTANCE_ID: 10612e3916e153dd3447850e944a03fabe89440970295447a30a75b151bd844e
APP_URL: http://localhost
MAILER_URL: null://localhost
DATABASE_HOST: mysql
DATABASE_PORT: 3306
DATABASE_URL: mysql://shopware:shopware@mysql:3306/shopware
SHOPWARE_ES_HOSTS:
SHOPWARE_ES_ENABLED: 0
SHOPWARE_ES_INDEXING_ENABLED: 0
SHOPWARE_ES_INDEX_PREFIX:
COMPOSER_HOME: /tmp/composer
SHOPWARE_HTTP_CACHE_ENABLED: 1
SHOPWARE_HTTP_DEFAULT_TTL: 7200
INSTALL_LOCALE: de-DE
BLUE_GREEN_DEPLOYMENT: 0
ports:
- 80:80
volumes:
- state:/state
- plugins:/var/www/html/custom/plugins
- files:/var/www/html/files
- jwt:/var/www/html/config/jwt
- theme:/var/www/html/public/theme
- media:/var/www/html/public/media
- thumbnail:/var/www/html/public/thumbnail
- bundles:/var/www/html/public/bundles
- sitemap:/var/www/html/public/sitemap
volumes:
state:
mysql-data:
plugins:
files:
jwt:
theme:
media:
thumbnail:
bundles:
sitemap: