mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 05:29:41 +01:00
Update README.md
This commit is contained in:
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2023 Jonas Kaninda
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
32
README.md
32
README.md
@@ -5,6 +5,12 @@ MySQL Backup tool, backup database to S3 or Object Storage
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/jkaninda/mysql-bkup">
|
||||||
|
<img src="https://www.mysql.com/common/logos/logo-mysql-170x115.png" alt="Logo">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
> Runs on:
|
> Runs on:
|
||||||
- Docker
|
- Docker
|
||||||
- Kubernetes
|
- Kubernetes
|
||||||
@@ -23,6 +29,12 @@ MySQL Backup tool, backup database to S3 or Object Storage
|
|||||||
- local
|
- local
|
||||||
- s3
|
- s3
|
||||||
- Object storage
|
- Object storage
|
||||||
|
|
||||||
|
## Volumes:
|
||||||
|
|
||||||
|
- /s3mnt => S3 mounting path
|
||||||
|
- /backup => local storage mounting path
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
| Options | Shorts | Usage |
|
| Options | Shorts | Usage |
|
||||||
@@ -313,4 +325,22 @@ spec:
|
|||||||
- name: S3_ENDPOINT
|
- name: S3_ENDPOINT
|
||||||
value: "https://s3.us-west-2.amazonaws.com"
|
value: "https://s3.us-west-2.amazonaws.com"
|
||||||
restartPolicy: Never
|
restartPolicy: Never
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please create an issue or submit a pull request.
|
||||||
|
Make sure to follow the existing coding style and provide tests for your changes.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project is licensed under the MIT License. See the LICENSE file for details.
|
||||||
|
|
||||||
|
## Authors
|
||||||
|
|
||||||
|
**Jonas Kaninda**
|
||||||
|
- <https://github.com/jkaninda>
|
||||||
|
|
||||||
|
## Copyright
|
||||||
|
|
||||||
|
Copyright (c) [2023] [Jonas Kaninda]
|
||||||
|
|||||||
@@ -33,4 +33,5 @@ RUN ln -s /usr/local/bin/mysql_bkup.sh /usr/local/bin/mysql_bkup
|
|||||||
RUN ln -s /usr/local/bin/mysql_bkup.sh /usr/local/bin/bkup
|
RUN ln -s /usr/local/bin/mysql_bkup.sh /usr/local/bin/bkup
|
||||||
|
|
||||||
RUN mkdir /backup
|
RUN mkdir /backup
|
||||||
WORKDIR /backup
|
WORKDIR /backup
|
||||||
|
VOLUME /backup
|
||||||
@@ -1,4 +1,11 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# MySQL Backup & Restore
|
||||||
|
|
||||||
|
# @author Jonas Kaninda
|
||||||
|
# @license MIT License <https://opensource.org/licenses/MIT>
|
||||||
|
# @link https://github.com/jkaninda/mysql-bkup
|
||||||
|
#
|
||||||
set -e
|
set -e
|
||||||
TIME=$(date +%Y%m%d_%H%M%S)
|
TIME=$(date +%Y%m%d_%H%M%S)
|
||||||
MY_SQL_DUMP=/usr/bin/mysqldump
|
MY_SQL_DUMP=/usr/bin/mysqldump
|
||||||
|
|||||||
Reference in New Issue
Block a user