-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.override.yml.dist
50 lines (42 loc) · 1.03 KB
/
docker-compose.override.yml.dist
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
version: '2.3'
services:
# php:
# environment:
# - "BLACKFIRE_CLIENT_ID=1"
# - "BLACKFIRE_CLIENT_TOKEN=1"
# - "BLACKFIRE_SERVER_ID=1"
# - "BLACKFIRE_SERVER_TOKEN=1"
# dns: # add google public dns servers
# - 8.8.8.8
# - 8.8.4.4
nginx:
ports:
- "80:80"
# httpd:
# ports:
# - "80:80"
mysql:
ports:
- "3306:3306"
environment:
- "MYSQL_ROOT_PASSWORD=root"
- "MYSQL_USER=project"
- "MYSQL_PASSWORD=project"
- "MYSQL_DATABASE=project"
maildev:
ports:
- "1080:80"
# blackfire:
# environment:
# - "BLACKFIRE_CLIENT_ID=1"
# - "BLACKFIRE_CLIENT_TOKEN=1"
# - "BLACKFIRE_SERVER_ID=1"
# - "BLACKFIRE_SERVER_TOKEN=1"
# phpmyadmin:
# image: phpmyadmin/phpmyadmin:4.7
# depends_on:
# - mysql
# links:
# - "mysql:db"
# ports:
# - "8080:80"