forked from versionpress/versionpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (28 loc) · 797 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
32 lines (28 loc) · 797 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
version: '3.6'
services:
wordpress:
image: versionpress/wordpress:php7.2-apache@sha256:64b3c10adfef9ae65a140d5547d670d996c5c852b9a840c71a86a5be4f777fdc
ports:
- "80:80"
volumes:
- ./plugins/versionpress:/var/www/html/wp-content/plugins/versionpress:z
- ./dev-env/wp:/var/www/html:z
links:
- mysql
- adminer
environment:
WORDPRESS_DB_PASSWORD: r00tpwd
mysql:
image: mysql:5.7@sha256:1590f2540fd87e39605686873fb10206da4cbd7e83df2bc4110abe9fb740699e
ports:
- "3306:3306"
volumes:
- db-data:/var/lib/mysql:z
environment:
MYSQL_ROOT_PASSWORD: r00tpwd
adminer:
image: adminer@sha256:0e245b5550d7710ebfe728e682804947e2edade4d7f3313e7066b4629b728c5c
ports:
- "8099:8080"
volumes:
db-data: