Skip to content

Commit 0dc142e

Browse files
authored
Merge pull request #546 from cytopia/docs-troubleshooting
Docs troubleshooting
2 parents e4657f3 + 8dbf591 commit 0dc142e

3 files changed

Lines changed: 32 additions & 1 deletion

File tree

.devilbox/www/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
$DEVILBOX_VERSION = 'v0.15.0';
17-
$DEVILBOX_DATE = '2019-03-09';
17+
$DEVILBOX_DATE = '2019-03-18';
1818
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
1919

2020
//

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ major versions.
9494
- PHP-FPM workers changed from `dynamic` to `ondemand`
9595
- Allow Apache to server underscore domains
9696
- Changed Nginx `client_max_body_size` to `0` to be in sync with Apache
97+
- Document failing start behaviour of MySQL container
9798

9899
#### Fixed
99100
- break on errors in wrong vhost-gen overwrite

docs/support/troubleshooting.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,27 @@ A few general things you should always do before attempting to open up issues ar
110110
that are shared by Docker. If not add those in the Docker settings.
111111

112112

113+
No Space left on Device
114+
-----------------------
115+
116+
If on Docker for Mac you get an error during docker pull similar to the following one:
117+
118+
.. code-block:: bash
119+
120+
write /var/lib/docker/tmp/GetImageBlob220119603: no space left on device
121+
122+
It means the file where MacOS stores the docker images is full. The usual way is to delete
123+
unused images and volumes to free up space or increase this volumes size.
124+
125+
However, depending on the version of Docker some of the above suggestions may not work and you
126+
have to get support from the docker/for-mac GitHub repository or forum.
127+
128+
.. seealso::
129+
* https://github.com/cytopia/devilbox/issues/539
130+
* https://github.com/docker/for-mac/issues/371#issuecomment-242047368
131+
* https://forums.docker.com/t/no-space-left-on-device-error/10894
132+
133+
113134
Address already in use
114135
----------------------
115136

@@ -287,6 +308,15 @@ To mitigate that issue, make sure that the ``swoole`` module is disabled in ``.e
287308
Database issues
288309
===============
289310

311+
Cannot connect to MySQL after restart
312+
-------------------------------------
313+
314+
This error usually occurs when you import a MySQL dump including the mysql database itself, which
315+
will overwrite the user permissions and thus you won't be able to connect anymore with the settings
316+
specified in ``.env``.
317+
318+
.. seealso:: https://github.com/cytopia/devilbox/issues/542
319+
290320
Invalid bind mount spec
291321
-----------------------
292322

0 commit comments

Comments
 (0)