forked from marmotedu/iam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# license that can be found in the LICENSE file. | ||
|
||
FROM BASE_IMAGE | ||
MAINTAINER Lingfei Kong <[email protected]> | ||
LABEL maintainer="<[email protected]>" | ||
|
||
WORKDIR /opt/iam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# license that can be found in the LICENSE file. | ||
|
||
FROM BASE_IMAGE | ||
MAINTAINER Lingfei Kong <[email protected]> | ||
LABEL maintainer="<[email protected]>" | ||
|
||
WORKDIR /opt/iam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# license that can be found in the LICENSE file. | ||
|
||
FROM BASE_IMAGE | ||
MAINTAINER Lingfei Kong <[email protected]> | ||
LABEL maintainer="<[email protected]>" | ||
|
||
WORKDIR /opt/iam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# license that can be found in the LICENSE file. | ||
|
||
FROM BASE_IMAGE | ||
MAINTAINER Lingfei Kong <[email protected]> | ||
LABEL maintainer="<[email protected]>" | ||
|
||
WORKDIR /opt/iam/scripts/install | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# mysqldump命令使用指南 | ||
|
||
参数: | ||
|
||
- `--no-data`: 只导出表结构不导出数据 | ||
- `--routines`: 导出存储过程和自定义函数 | ||
|
||
## 1. 导出所有数据库 | ||
|
||
```bash | ||
mysqldump -uroot -proot --databases iam > /tmp/iam.sql | ||
``` | ||
|
||
## 2. 导出iam数据库的所有数据 | ||
|
||
```bash | ||
mysqldump -uroot -proot --databases iam > /tmp/iam.sql | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters