Skip to content

Commit e7744e4

Browse files
committed
v3.0.0
1 parent d802475 commit e7744e4

File tree

14 files changed

+2628
-2441
lines changed

14 files changed

+2628
-2441
lines changed

README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ Automatically get your mysql database backup and uploading it to the Object Stor
1111

1212
Demo: [https://mysql-backup.demo.wyr.me](https://mysql-backup.demo.wyr.me)
1313

14-
默认超级管理员
15-
账号:admin
14+
默认超级管理员
15+
16+
```textpalin
17+
账号:admin
1618
密码:admin888
19+
```
1720

1821
![mysql-backup](https://cdn.wyr.me/imgs/mysql-buckup-preview.gif)
1922

@@ -58,17 +61,20 @@ docker run --detach \
5861
--name nginx-proxy \
5962
--publish 80:80 \
6063
--publish 443:443 \
64+
-e ENABLE_IPV6=true \
6165
--volume /etc/nginx/certs \
6266
--volume /etc/nginx/vhost.d \
6367
--volume /usr/share/nginx/html \
6468
--volume /var/run/docker.sock:/tmp/docker.sock:ro \
6569
jwilder/nginx-proxy
6670

6771
docker run --detach \
68-
--name nginx-proxy-letsencrypt \
72+
--name nginx-proxy-acme \
6973
--volumes-from nginx-proxy \
7074
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
71-
jrcs/letsencrypt-nginx-proxy-companion
75+
--volume acme:/etc/acme.sh \
76+
77+
nginxproxy/acme-companion
7278

7379
docker run -itd --name mysql-backup --restart always \
7480
-v /etc/localtime:/etc/localtime:ro \

package.json

+22-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql-backup",
3-
"version": "2.2.2",
3+
"version": "3.0.0",
44
"description": "Automatically get your mysql database backup and uploading it to the Object Storage.",
55
"main": "src/main.js",
66
"scripts": {
@@ -26,33 +26,32 @@
2626
"homepage": "https://github.com/yi-ge/mysql-backup#readme",
2727
"type": "module",
2828
"dependencies": {
29-
"ali-oss": "^6.5.1",
30-
"archiver": "^3.1.1",
31-
"archiver-zip-encrypted": "^1.0.8",
32-
"axios": "^0.19.2",
33-
"cos-nodejs-sdk-v5": "^2.5.20",
34-
"dayjs": "^1.8.23",
35-
"fastify": "^2.13.0",
36-
"fastify-cors": "^3.0.3",
37-
"fastify-jwt": "^1.3.1",
38-
"fastify-plugin": "^1.6.1",
39-
"fastify-static": "^2.6.0",
40-
"fastify-swagger": "^2.5.1",
41-
"jssha": "^2.4.1",
42-
"lowdb": "^1.0.0",
43-
"mysql2": "^2.1.0",
44-
"mysqldump": "^3.1.0",
45-
"node-schedule": "^1.3.2",
46-
"pino-pretty": "^4.0.0",
29+
"ali-oss": "^6.16.0",
30+
"archiver": "^5.3.0",
31+
"archiver-zip-encrypted": "^1.0.10",
32+
"axios": "^0.21.1",
33+
"cos-nodejs-sdk-v5": "^2.10.0",
34+
"dayjs": "^1.10.6",
35+
"fastify": "^3.20.2",
36+
"fastify-cors": "^6.0.2",
37+
"fastify-jwt": "^3.0.1",
38+
"fastify-plugin": "^3.0.0",
39+
"fastify-static": "^4.2.3",
40+
"fastify-swagger": "^4.9.0",
41+
"jssha": "^3.2.0",
42+
"lowdb": "^2.1.0",
43+
"mysql2": "^2.3.0",
44+
"mysqldump": "^3.2.0",
45+
"node-schedule": "^2.0.0",
46+
"pino-pretty": "^6.0.0",
4747
"qcloudsms_js": "^0.1.1",
4848
"qiniu": "https://github.com/yi-ge/nodejs-sdk",
4949
"request": "^2.88.2",
50-
"uuid": "^7.0.3"
50+
"uuid": "^8.3.2"
5151
},
5252
"devDependencies": {
53-
"babel-eslint": "^10.1.0",
54-
"nodemon": "^2.0.2",
55-
"standard": "^14.3.3"
53+
"nodemon": "^2.0.12",
54+
"standard": "^16.0.3"
5655
},
5756
"standard": {
5857
"parser": "babel-eslint",

0 commit comments

Comments
 (0)