-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose53.yml
152 lines (143 loc) · 4.19 KB
/
docker-compose53.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
version: '3'
services:
nginx:
image: nginx:1.15-alpine
environment:
- TZ=Europe/Berlin
ports:
- "53856:53856"
- "53870:53870"
- "53871:53871"
- "53872:53872"
- "53873:53873"
volumes:
- shopware53_php73:/var/www/shopware53_php73:delegated
- shopware53_php72:/var/www/shopware53_php72:delegated
- shopware53_php71:/var/www/shopware53_php71:delegated
- shopware53_php70:/var/www/shopware53_php70:delegated
- shopware53_php56:/var/www/shopware53_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:
- shopware53_php73
- shopware53_php72
- shopware53_php71
- shopware53_php70
- shopware53_php56
- mysql
depends_on:
- shopware53_php73
- shopware53_php72
- shopware53_php71
- shopware53_php70
- shopware53_php56
shopware53_php73:
image: solutiondrive/docker-shopware-container:shopware5.3.7-php7.3
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware53_php73
- WEB_HOST=localhost:53873
volumes:
- shopware53_php73:/var/www/shopware53_php73: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
- ./php/msmtprc:/etc/msmtprc
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware53_php72:
image: solutiondrive/docker-shopware-container:shopware5.3.7-php7.2
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware53_php72
- WEB_HOST=localhost:53872
volumes:
- shopware53_php72:/var/www/shopware53_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
- ./php/msmtprc:/etc/msmtprc
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware53_php71:
image: solutiondrive/docker-shopware-container:shopware5.3.7-php7.1
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware53_php71
- WEB_HOST=localhost:53871
volumes:
- shopware53_php71:/var/www/shopware53_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
- ./php/msmtprc:/etc/msmtprc
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware53_php70:
image: solutiondrive/docker-shopware-container:shopware5.3.7-php7.0
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware53_php70
- WEB_HOST=localhost:53870
volumes:
- shopware53_php70:/var/www/shopware53_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
- ./php/msmtprc:/etc/msmtprc
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware53_php56:
image: solutiondrive/docker-shopware-container:shopware5.3.7-php5.6
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware53_php56
- WEB_HOST=localhost:53856
volumes:
- shopware53_php56:/var/www/shopware53_php56: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
- ./php/msmtprc:/etc/msmtprc
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:
- "53331:3306"
mailhog:
image: mailhog/mailhog:v1.0.0
ports:
- "8053:8025"
volumes:
shopware53_php73:
shopware53_php72:
shopware53_php71:
shopware53_php70:
shopware53_php56: