forked from major/MySQLTuner-perl
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Last updates for MySQLTuner getting is own Docker images jmrenouard/m…
…ysqltuner
- Loading branch information
1 parent
1c1c463
commit 4bb7041
Showing
7 changed files
with
405 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.md | ||
*.md | ||
build/** | ||
Makefile | ||
.perltidy | ||
*.json | ||
*.png |
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 |
---|---|---|
|
@@ -19,3 +19,4 @@ sql/*.sql | |
sql/*.csv | ||
cve.csv | ||
default*.cnf | ||
.env |
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 @@ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
[ -f "./.env" ] && source ./.env | ||
[ -f "../.env" ] && source ../.env | ||
|
||
VERSION=$1 | ||
|
||
docker login -u $DOCKER_USER_LOGIN -p $DOCKER_USER_PASSWORD | ||
docker tag jmrenouard/mysqltuner:latest jmrenouard/mysqltuner:$VERSION | ||
docker push jmrenouard/mysqltuner:latest | ||
docker push jmrenouard/mysqltuner:$VERSION |
Oops, something went wrong.