-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·52 lines (48 loc) · 1.14 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
# docker-compose.yml
version: "3"
services:
# MySQL database
db:
image: mariadb
restart: unless-stopped
container_name: wpp-plugin-db
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
volumes:
- db-data:/var/lib/mysql
networks:
- wpp-plugin-net
wpp:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
container_name: wpp-plugin-app
environment:
WORDPRESS_DB_HOST: wpp-plugin-db
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
WORDPRESS_DEBUG: 1
XDEBUG_HOST: host.docker.internal
XDEBUG_IDEKEY: VSCODE
volumes:
- ./wp:/var/www/html
- ./:/var/www/html/wp-content/plugins/wp-plugin-base
ports:
- 8080:80
depends_on:
- db
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- wpp-plugin-net
networks:
wpp-plugin-net:
# Persist DB and WordPress data across containers
volumes:
db-data:
wp-data: