This repository was archived by the owner on Jan 25, 2022. It is now read-only.
File tree 5 files changed +27
-5
lines changed
5 files changed +27
-5
lines changed Original file line number Diff line number Diff line change 1
1
# WPLib Box ChangeLog
2
2
3
+ ## 0.14.0
4
+ + ` vagrant up ` now configures box using ` project.json ` file
5
+ + Add Memcached as an option
6
+ + Add CLI commands to switch between Redis and Memcached
7
+ + Implement PHP5.6 and PHP7.0 as Docker containers
8
+ + Add shortcut command to switch to PHP7.1
9
+ + Fix bug in Nginx MailHog virtual host configuration
10
+ + Fix issue where ` jq ` was not latest version
11
+ + Add ` realpath ` package
12
+
3
13
## 0.13.0
4
14
+ Implement MySQL as a Docker container
5
15
+ Implement Redis as a Docker container
Original file line number Diff line number Diff line change @@ -423,14 +423,14 @@ For example, to switch from Nginx to Apache:
423
423
+ Conversely, you can ` box nginx ` to switch from Apache to Nginx.
424
424
425
425
<a id =" database " ></a >
426
- ### How do I swtich from MySQL to MariaDB (or vice versa)?
426
+ ### How do I switch from MySQL to MariaDB (or vice versa)?
427
427
The box runs MySQL as the default database, however MariaDB is available. To configure the box to use
428
428
MariaDB instead, use the ` box ` command _ (which will dump the contents of
429
429
the current database and import into the new database)_ :
430
430
431
431
+ Log in to the box using ` vagrant ssh ` on your host machine.
432
432
+ Enter the following command: ` box mariadb ` to use MariaDB.
433
- + Conversely, you can `box mysql' to switch from MariaDB to MySQL.
433
+ + Conversely, you can ` box mysql ` to switch from MariaDB to MySQL.
434
434
435
435
<a id =" logs " ></a >
436
436
### How do I see the logs for Docker container Foo?
Original file line number Diff line number Diff line change @@ -47,20 +47,21 @@ Our **GOAL** is to be:
47
47
48
48
And one more goal we achieved is that our box supports ** PhpStorm+XDEBUG debugging** with the least effort required on your part.
49
49
50
- We think that once you try WPLib Box you will agree that we have succeeded. Want to know [ ** how** ] (# how) we did it?
50
+ We think that once you try WPLib Box you will agree that we have succeeded. Want to know [ ** how** ] ( #how ) we did it?
51
51
52
52
<a id =" whats-included " ></a >
53
53
## Services & Software Included
54
54
55
55
Service/Software|Version
56
56
-------|----------
57
- PHP/PHP-FPM|7.0.18 & 5.6.30
57
+ PHP/PHP-FPM|7.1.4, 7.0.16, & 5.6.30
58
58
MySQL|5.7.17
59
59
MariaDB|10.1.22
60
60
Nginx|1.11.0
61
61
Apache|2.4.25
62
- XDEBUG|2.5.1
62
+ XDEBUG|2.5.0
63
63
Redis|3.0.7
64
+ Memcached|1.4.36
64
65
WP CLI|1.1.0
65
66
Nodejs|7.8.0
66
67
localtunnel.me|
Original file line number Diff line number Diff line change @@ -369,5 +369,8 @@ Vagrant.configure(2) do |config|
369
369
run_remote "box backup-db"
370
370
end
371
371
372
+ config . trigger . after [ :up , :reload ] do
373
+ run_remote "box startup"
374
+ end
372
375
end
373
376
Original file line number Diff line number Diff line change
1
+ {
2
+ "services" : {
3
+ "database" : " mysql" ,
4
+ "webserver" : " nginx" ,
5
+ "processvm" : " php7.0" ,
6
+ "kvstore" : " redis"
7
+ }
8
+ }
You can’t perform that action at this time.
0 commit comments