-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (42 loc) · 1.06 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
version: "3"
services:
db:
image: mariadb
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
volumes:
- db-data:/var/lib/mysql
ports:
- 3307:3306
wp:
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
environment:
XDEBUG_CONFIG: ${XDEBUG_CONFIG}
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: root
WORDPRESS_DB_PASSWORD: root
WORDPRESS_DB_NAME: wordpress
WORDPRESS_DEBUG: 1
WORDPRESS_CONFIG_EXTRA: |
define('WP_SITEURL', 'http://' . $$_SERVER['HTTP_HOST'] );
define('WP_HOME', 'http://' . $$_SERVER['HTTP_HOST'] );
define('WP_DEBUG_LOG', true);
volumes:
- ./.wordpress/wordpress:/var/www/html
- ./:/var/www/html/wp-content/plugins/wp-graphql-filter-query
ports:
- 8080:80
depends_on:
- db
# Make network name pretty
# Persist DB and WordPress data across containers
volumes:
db-data:
# wp-data: