-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
65 lines (62 loc) · 1.25 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
54
55
56
57
58
59
60
61
62
63
64
65
version: "3.0"
services:
proxy:
image: nginx:latest
ports:
####
- "80:80"
- "443:443"
####
volumes:
- ./nginx/conf.d/:/etc/nginx/conf.d/
- ./nginx/log/:/var/log/nginx/
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
networks:
- frontend
magento:
build: ./php
image: teksystem/php5.6:magento
expose:
- "80"
volumes:
- ../:/var/www/html
- ./php/conf.d/custom.ini:/usr/local/etc/php/conf.d/custom.ini
- /etc/localtime:/etc/localtime:ro
restart: always
networks:
- frontend
- backend
mysql:
image: mysql:5.7
ports:
####
- "3307:3306"
####
restart: always
env_file:
- ./mysql/.env
volumes:
- ./mysql/data:/var/lib/mysql
- /etc/localtime:/etc/localtime:ro
restart: always
networks:
- backend
phpmyadmin:
image: phpmyadmin/phpmyadmin
expose:
- "80"
environment:
- PMA_HOST=mysql
####
- PMA_ABSOLUTE_URI=http://localhost/phpmyadmin/
####
volumes:
- /etc/localtime:/etc/localtime:ro
restart: always
networks:
- frontend
- backend
networks:
frontend:
backend: