-
Notifications
You must be signed in to change notification settings - Fork 165
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
2 changed files
with
17 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
## Change log | ||
|
||
- Fix a bug in MySQL table name and keyword conflicts. | ||
- Change the original generation of 9 CRUD API codes for each table to the default generation of 5 commonly used ones, which can be switched to generate 9 through switches. | ||
- Add kafka client library. |
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,16 @@ | ||
## Build and Push Image | ||
|
||
```bash | ||
# build sponge image | ||
./build-sponge-image.sh v1.8.3 | ||
|
||
# copy tag | ||
docker tag zhufuyi/sponge:v1.8.3 zhufuyi/sponge:latest | ||
|
||
# login docker | ||
docker login -u zhufuyi -p | ||
|
||
# push image | ||
docker push zhufuyi/sponge:v1.8.3 | ||
docker push zhufuyi/sponge:latest | ||
``` |