-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose56.yml
74 lines (68 loc) · 1.94 KB
/
docker-compose56.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
version: '3'
services:
nginx:
image: nginx:1.15-alpine
environment:
- TZ=Europe/Berlin
ports:
- "56872:56872"
- "56873:56873"
volumes:
- shopware56_php72:/var/www/shopware56_php72:delegated
- shopware56_php73:/var/www/shopware56_php73: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:
- shopware56_php72
- shopware56_php73
- mysql
depends_on:
- shopware56_php72
- shopware56_php73
shopware56_php72:
image: solutiondrive/docker-shopware-container:shopware5.6.7-php7.2
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware56_php72
- WEB_HOST=localhost:56872
volumes:
- shopware56_php72:/var/www/shopware56_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
depends_on:
- mysql
shopware56_php73:
image: solutiondrive/docker-shopware-container:shopware5.6.7-php7.3
environment:
- TZ=Europe/Berlin
- DB_DATABASE=shopware56_php73
- WEB_HOST=localhost:56873
volumes:
- shopware56_php73:/var/www/shopware56_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
depends_on:
- mysql
mysql:
image: mysql:5.7.20
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_ALLOW_EMPTY_PASSWORD=false
- MYSQL_DATABASE=test
ports:
- "56331:3306"
mailhog:
image: mailhog/mailhog:v1.0.0
ports:
- "8055:8025"
volumes:
shopware56_php72:
shopware56_php73: