From f33e03a4be26d8c17ab6659d1a4722cb0954cd76 Mon Sep 17 00:00:00 2001 From: bach Date: Mon, 15 Nov 2021 13:04:31 +0100 Subject: [PATCH] readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b73ebc..53b4e79 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ make d9_maj_config ## Updating manualy the mysql db copy your db backup into the mysql container ```sh -docker cp your-db-file.sql eql-mysql-1:/root/ +docker cp path/to/your-db-file.sql eql-mysql-1:/root/ ``` log into mysql container ```sh @@ -196,6 +196,7 @@ make exec_mysql ``` once inside the mysql container you can use mysql command to drop then create and load the db with your file ``` +cd /root/ mysql -uroot -peql > drop database eql; > create database eql;