-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (52 loc) · 1.08 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
version: '3.8'
services:
# Nginx Service
reverse-proxy:
image: nginx:alpine
restart: always
ports:
- "8080:80"
deploy:
resources:
limits:
cpus: '0.25'
memory: 20M
depends_on:
- wordpress
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
networks:
- hostnetwork
# MySQL Service
db:
image: mysql:5.7
volumes:
- ./${DIR}/db-data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: mywordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
networks:
- hostnetwork
#WordPress Service
wordpress:
depends_on:
- db
image: wordpress:latest
volumes:
- ./${DIR}/wordpress-data:/var/www/html
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
networks:
- hostnetwork
networks:
hostnetwork:
driver: bridge