-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose54.yml
147 lines (138 loc) · 4.01 KB
/
docker-compose54.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
version: '3'
services:
nginx:
image: nginx:1.15-alpine
environment:
- TZ=Europe/Berlin
ports:
- "54856:54856"
- "54870:54870"
- "54871:54871"
- "54872:54872"
- "54873:54873"
volumes:
- shopware54_php73:/var/www/shopware54_php73:delegated
- shopware54_php72:/var/www/shopware54_php72:delegated
- shopware54_php71:/var/www/shopware54_php71:delegated
- shopware54_php70:/var/www/shopware54_php70:delegated
- shopware54_php56:/var/www/shopware54_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:
- shopware54_php73
- shopware54_php72
- shopware54_php71
- shopware54_php70
- shopware54_php56
- mysql
depends_on:
- shopware54_php73
- shopware54_php72
- shopware54_php71
- shopware54_php70
- shopware54_php56
shopware54_php73:
image: solutiondrive/docker-shopware-container:shopware5.4.6-php7.3
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware54_php73
- WEB_HOST=localhost:54873
volumes:
- shopware54_php73:/var/www/shopware54_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
links:
- mysql
- mailhog
depends_on:
- mysql
- mailhog
shopware54_php72:
image: solutiondrive/docker-shopware-container:shopware5.4.6-php7.2
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware54_php72
- WEB_HOST=localhost:54872
volumes:
- shopware54_php72:/var/www/shopware54_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
shopware54_php71:
image: solutiondrive/docker-shopware-container:shopware5.4.6-php7.1
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware54_php71
- WEB_HOST=localhost:54871
volumes:
- shopware54_php71:/var/www/shopware54_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
shopware54_php70:
image: solutiondrive/docker-shopware-container:shopware5.4.6-php7.0
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware54_php70
- WEB_HOST=localhost:54870
volumes:
- shopware54_php70:/var/www/shopware54_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
shopware54_php56:
image: solutiondrive/docker-shopware-container:shopware5.4.6-php5.6
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware54_php56
- WEB_HOST=localhost:54856
volumes:
- shopware54_php56:/var/www/shopware54_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
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:
- "54331:3306"
mailhog:
image: mailhog/mailhog:v1.0.0
ports:
- "8054:8025"
volumes:
shopware54_php73:
shopware54_php72:
shopware54_php71:
shopware54_php70:
shopware54_php56: