-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 867 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 867 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
version: '3.3'
services:
mysql:
image: mariadb:lts
volumes:
- ~/${WP_MYSQL_STASH:-WordPressDock}/wp-db/neve:/var/lib/mysql
restart: always
ports:
- 3307:3306
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- mysql
image: hardeepasrani/pirate-brewery
ports:
- 8080:80
privileged: true
volumes:
- ~/${WP_CORE_STASH:-wp-core}:/var/www/html/
- .:/var/www/html/wp-content/themes/neve/
- ../../plugins/neve-pro-addon:/var/www/html/wp-content/plugins/neve-pro-addon
restart: always
environment:
WORDPRESS_DB_NAME: wordpress
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_ROOT_PASSWORD: wordpress
WORDPRESS_DEBUG: 1