forked from stephenharris/Event-Organiser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (33 loc) · 840 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (33 loc) · 840 Bytes
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
version: '3.1'
services:
wordpress:
build:
context: docker
args:
WP_VERSION : 5.1.1
PHP_VERSION : 7.1
container_name: eventorg_php
volumes:
- .:/var/www/html/wp-content/plugins/event-organiser
restart: always
ports:
- 8080:80
environment:
WORDPRESS_DB_HOST: eventorg_mysql
WORDPRESS_DB_USER: admin
WORDPRESS_DB_PASSWORD: password
WORDPRESS_DB_NAME: wordpress
db:
image: mysql:5.7
container_name: eventorg_mysql
restart: always
environment:
MYSQL_DATABASE: wordpress
MYSQL_USER: admin
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
browser:
hostname: eventorg_browser
container_name: eventorg_browser
image: selenium/standalone-chrome:2.53.0
#image: selenium/standalone-firefox