-
Notifications
You must be signed in to change notification settings - Fork 22
/
docker-compose.yml
82 lines (76 loc) · 2.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version: '3'
services:
mysql:
image: mysql:5
volumes:
- ./bin/local-dev/mysql:/var/lib/mysql
- ./bin/local-dev/wordpress/config/mysql/wptests.sql:/docker-entrypoint-initdb.d/wptests.sql
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
wordpress:
build:
context: ./bin/local-dev/wordpress
args:
WP_VERSION: ${WP_VERSION}
PHP_VERSION: ${PHP_VERSION}
depends_on:
- mysql
ports:
- 8088:80
volumes:
- ./bin/local-dev/wordpress/html:/var/www/html
- ./plugin:/var/www/html/wp-content/plugins/material-design
- ./uploads:/var/www/html/wp-content/uploads
- ./theme:/var/www/html/wp-content/themes/material-design-google
# Mount composer files and the vendor folder to both the plugin and theme folders.
- ./vendor:/var/www/html/wp-content/plugins/material-design/vendor
- ./composer.json:/var/www/html/wp-content/plugins/material-design/composer.json
- ./composer.lock:/var/www/html/wp-content/plugins/material-design/composer.lock
- ./vendor:/var/www/html/wp-content/themes/material-design-google/vendor
- ./composer.json:/var/www/html/wp-content/themes/material-design-google/composer.json
- ./composer.lock:/var/www/html/wp-content/themes/material-design-google/composer.lock
restart: always
environment:
WORDPRESS_DEBUG: ${WORDPRESS_DEBUG-1}
WORDPRESS_DB_USER: ${WP_DB_USER}
WORDPRESS_DB_PASSWORD: ${WP_DB_PASSWORD}
cli:
image: wordpress:cli
user: xfs
volumes:
- ./bin/local-dev/wordpress/html:/var/www/html
- ./plugin:/var/www/html/wp-content/plugins/material-design
- ./theme:/var/www/html/wp-content/themes/material-design-google
- ./uploads:/var/www/html/wp-content/uploads
depends_on:
- mysql
- wordpress
command: tail -f /dev/null
environment:
WORDPRESS_DEBUG: 1
WORDPRESS_DB_USER: ${WP_DB_USER}
WORDPRESS_DB_PASSWORD: ${WP_DB_PASSWORD}
mailhog:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025