-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
55 lines (49 loc) · 972 Bytes
/
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
version: '2'
services:
codeception:
build: codeception
depends_on:
- wordpress
- ngrok
environment:
- GITHUB_API_KEY=$GITHUB_API_KEY
- WP_CLI_CACHE_DIR=/wordpress/.wp-cli/cache
- PLUGIN_DIR=$PLUGIN_DIR
volumes:
- wordpress:/wordpress
wordpress:
build: wordpress
depends_on:
- mysql
- chrome
hostname: wp.test
networks:
default:
aliases:
- wp.test
volumes:
- wordpress:/var/www/html
ports:
- "8080:80"
- "8443:443"
mysql:
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: root
chrome:
image: selenium/standalone-chrome-debug:3.141.59-dubnium
environment:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
volumes:
- /dev/shm:/dev/shm
ports:
- "4444:4444"
- "5900:5900"
ngrok:
build: ngrok
env_file:
- $PWD/.env.lumiere
ports:
- "8040:8040"
volumes:
wordpress: