-
Notifications
You must be signed in to change notification settings - Fork 163
/
docker-compose.yml
executable file
·54 lines (47 loc) · 1.22 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
version: '3.1'
services:
wordpress:
image: wordpress
ports:
- 8228:80
environment:
WORDPRESS_DB_PASSWORD: example
WORDPRESS_DEBUG: 1
WORDPRESSS_DEBUG_LOG: example
ABSPATH: /usr/src/wordpress/
volumes:
- wordpress:/var/www/html
- ./wp-content/plugins:/var/www/html/wp-content/plugins
- .:/var/www/html/wp-content/plugins/caldera-forms
- ./caldera-core.php:/var/www/html/wp-content/plugins/caldera-forms/caldera-core.php
- ./wp-content/mu-plugins:/var/www/html/wp-content/mu-plugins
cli:
image: wordpress:cli
volumes:
- wordpress:/var/www/html
- .:/var/www/html/wp-content/plugins/caldera-forms
- ./wp-content/plugins:/var/www/html/wp-content/plugins
environment:
WORDPRESS_DB_PASSWORD: example
ABSPATH: /usr/src/wordpress/
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: example
MYSQL_DATABASE: wordpress_test
wordpress_phpunit:
build:
context: ./bin/docker/phpunit
dockerfile: DOCKERFILE
environment:
PHPUNIT_DB_HOST: mysql
volumes:
- .:/app
- testsuite:/tmp
composer:
image: composer
volumes:
- .:/app
volumes:
testsuite:
wordpress: