-
-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust project files: CHANGELOG, CONTRIBUTING and UPDATING
- Loading branch information
Showing
3 changed files
with
116 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changelog | ||
|
||
Make sure to have a look at [UPDATING.md](Updating.md) to see any required steps for updating | ||
major versions | ||
|
||
## Devilbox v1.0 | ||
|
||
* Use Docker volumes for stateful data (MySQL, PgSQL, MongoDB) | ||
- This fixes various mount issues on Windows | ||
- This improves general performance | ||
* Split Bind container into internal DNS and autoDNS | ||
- This fixes various issues with Docker Toolbox and DNS resolution | ||
* Use semantic versioning | ||
- This allows for faster releases | ||
- This allows for better visibility of breaking changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Updating | ||
|
||
This document will hold all information on how to update between major versions. | ||
|
||
|
||
## Update from `v0.x` to `v1.x` | ||
|
||
### Docker Volumes | ||
|
||
**PR:** https://github.com/cytopia/devilbox/pull/383 | ||
|
||
This feature will move all data directories (MySQL, PostgreSQL, MongoDB and others) to Docker | ||
volumes for best-practice and compatibility reasons on different operating systems. | ||
|
||
Before updating to this release, you will need to manually trigger a backup of MySQL, | ||
PostgreSQL and MongoDB to ensure that you have a copy of your data. By switching to this release | ||
you will be unable to access your current data: | ||
|
||
**Steps to update:** | ||
|
||
1. Backup your data | ||
2. Switch to the new release | ||
3. Import your data |