This repository was archived by the owner on Mar 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (51 loc) · 1.39 KB
/
docker-compose.yml
File metadata and controls
52 lines (51 loc) · 1.39 KB
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
version: '3'
services:
wordpress:
image: visiblevc/wordpress:latest
ports:
- 8080:80
- 443:443
volumes:
- ./data:/data
- ./wp-content/themes/wp-react-theme:/app/wp-content/themes/wp-react-theme
- ./sw.js:/app/sw.js
- ./appcache/manifest.appcache:/app/appcache/manifest.appcache
- ./appcache/manifest.html:/app/appcache/manifest.html
environment:
DB_NAME: wordpress
DB_PASS: root
PERMALINKS: archives/%post_id%/%postname%/
THEMES: >-
[local]wp-react-theme
PLUGINS: >-
[yoast-to-rest-api]https://github.com/niels-garve/yoast-to-rest-api/archive/1.4.1.zip,
wp-optimize,
wp-migrate-db,
wordpress-seo,
w3-total-cache,
tinymce-clear-buttons,
regenerate-thumbnails,
https-redirection,
disable-emojis,
custom-post-type-ui,
[Basic-Auth]https://github.com/WP-API/Basic-Auth/archive/master.zip,
amazon-web-services,
amazon-s3-and-cloudfront,
advanced-custom-fields,
acf-to-rest-api,
acf-content-analysis-for-yoast-seo
ENVIRONMENT: development
db:
image: mysql:5.7
volumes:
- data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
phpmyadmin:
image: phpmyadmin/phpmyadmin
environment:
MYSQL_ROOT_PASSWORD: root
ports:
- 22222:80
volumes:
data: