bach 2 년 전
부모
커밋
f33e03a4be
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      README.md

+ 2 - 1
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;