-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose55.yml
123 lines (115 loc) · 3.32 KB
/
docker-compose55.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
version: '3'
services:
nginx:
image: nginx:1.15-alpine
environment:
- TZ=Europe/Berlin
ports:
- "55870:55870"
- "55871:55871"
- "55872:55872"
volumes:
- shopware55_php72:/var/www/shopware55_php72:delegated
- shopware55_php71:/var/www/shopware55_php71:delegated
- shopware55_php70:/var/www/shopware55_php70:delegated
- shopware55_php56:/var/www/shopware55_php56:delegated
- ${PROJECT_DIR}:/opt/host:delegated
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/include.shopware.conf:/etc/nginx/include.shopware.conf
- ./nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf
links:
- shopware55_php72
- shopware55_php71
- shopware55_php70
- shopware55_php56
- mysql
depends_on:
- shopware55_php72
- shopware55_php71
- shopware55_php70
- shopware55_php56
shopware55_php72:
image: solutiondrive/docker-shopware-container:shopware5.5.2-php7.2
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware55_php72
- WEB_HOST=localhost:55872
volumes:
- shopware55_php72:/var/www/shopware55_php72:delegated
- ${PROJECT_DIR}:/opt/host:delegated
- ./php/php.ini:/usr/local/etc/php/conf.d/zzz-override-php.ini
- ./php/www.conf:/usr/local/etc/php-fpm.d/www.conf
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware55_php71:
image: solutiondrive/docker-shopware-container:shopware5.5.2-php7.1
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware55_php71
- WEB_HOST=localhost:55871
volumes:
- shopware55_php71:/var/www/shopware55_php71:delegated
- ${PROJECT_DIR}:/opt/host:delegated
- ./php/php.ini:/usr/local/etc/php/conf.d/zzz-override-php.ini
- ./php/www.conf:/usr/local/etc/php-fpm.d/www.conf
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware55_php70:
image: solutiondrive/docker-shopware-container:shopware5.5.2-php7.0
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware55_php70
- WEB_HOST=localhost:55870
volumes:
- shopware55_php70:/var/www/shopware55_php70:delegated
- ${PROJECT_DIR}:/opt/host:delegated
- ./php/php.ini:/usr/local/etc/php/conf.d/zzz-override-php.ini
- ./php/www.conf:/usr/local/etc/php-fpm.d/www.conf
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware55_php56:
image: solutiondrive/docker-shopware-container:shopware5.5.2-php5.6
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware55_php56
- WEB_HOST=localhost:55856
volumes:
- shopware55_php56:/var/www/shopware55_php70:delegated
- ${PROJECT_DIR}:/opt/host:delegated
- ./php/php.ini:/usr/local/etc/php/conf.d/zzz-override-php.ini
- ./php/www.conf:/usr/local/etc/php-fpm.d/www.conf
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
mysql:
image: mysql:5.7.20
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_ALLOW_EMPTY_PASSWORD=false
- MYSQL_DATABASE=test
ports:
- "55331:3306"
mailhog:
image: mailhog/mailhog:v1.0.0
ports:
- "8055:8025"
volumes:
shopware55_php72:
shopware55_php71:
shopware55_php70:
shopware55_php56: