From bba30eb62c94ffbec35574827a4718c7ec86a1bd Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 9 Apr 2018 15:59:36 +0100 Subject: docs: Add note on restoring the docker database If you back something up, you'd probably want to restore it soon enough too. Signed-off-by: Stephen Finucane --- docs/development/installation.rst | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/development/installation.rst b/docs/development/installation.rst index f77147d..a1bee1d 100644 --- a/docs/development/installation.rst +++ b/docs/development/installation.rst @@ -106,7 +106,15 @@ backup the database at any stage, run: --password=DATABASEPASSWORD DATABASE > backup.sql where ``DATABASECONTAINER`` is found by ``docker ps -a`` and the other settings -are the same as those defined in ``patchwork/settings/dev.py``. +are the same as those defined in ``patchwork/settings/dev.py``. To restore this +again, run: + +.. code-block:: shell + + $ docker-compose run --rm web python manage.py dbshell + mysql> use DATABASE; + mysql> set autocommit=0; source backup.sql; commit; + mysql> exit; Any local edits to the project files made locally are immediately visible to the Docker container, and so should be picked up by the Django auto-reloader. -- cgit v1.2.3