Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,25 @@ Finally, if no container or other programs are making use of port 3306, check th
Check whether the MySQL container is crashing upon startup, and if so, what is causing it to crash.


Docker is using too much disk space
-----------------------------------

Docker does not automatically remove unused objects, so images and build cache can consume a large amount of disk space over time. Check Docker's disk usage with::

docker system df

Before pruning, start the Tutor platform whose images you want to keep. For example::

tutor local start

Then remove unused Docker objects with::

docker system prune -a

.. warning::
This command removes all stopped containers, unused networks and images, and unused build cache. Review Docker's confirmation prompt before proceeding. Do not add the ``--volumes`` option unless you intend to remove unused volumes, which may contain persistent data.


Help! The Docker containers are eating all my RAM/CPU/CHEESE
------------------------------------------------------------

Expand Down
Loading