-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
66 lines (66 loc) · 1.3 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
66
version : "3"
services :
mysql :
build :
context : ./mysql
dockerfile : Dockerfile
ports :
- "3306:3306"
volumes :
- ./mysql/data:/var/lib/mysql:cached
- ./mysql/logs:/var/log/mysql:cached
environment :
- MYSQL_DATABASE=test
- MYSQL_USER=test
- MYSQL_PASSWORD=123456
- MYSQL_ROOT_PASSWORD=123456
container_name : mysql
restart : always
networks:
- lnmp
php :
build :
context : ./php
dockerfile : Dockerfile
ports :
- "9000:9000"
volumes :
- ./www:/usr/share/nginx/html:cached
container_name : php
links :
- mysql
restart : always
networks:
- lnmp
nginx :
build :
context : ./nginx
dockerfile : Dockerfile
ports :
- "80:80"
- "443:443"
- "3002:3002"
volumes :
- ./www:/usr/share/nginx/html:cached
- ./nginx/logs:/var/log/nginx:cached
container_name : nginx
links :
- php
restart : always
networks:
- lnmp
redis :
build :
context : ./redis
dockerfile : Dockerfile
ports :
- "6379:6379"
volumes :
- ./redis/data:/data:cached
container_name : redis
restart : always
networks:
- lnmp
networks :
lnmp :
driver : bridge