From c0746b95b32e61515fe4d837dd27267d0ae16e6d Mon Sep 17 00:00:00 2001 From: Alex Whitney Date: Wed, 23 Oct 2024 20:18:59 -0400 Subject: [PATCH 1/3] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0d05bb6..c589b788 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Dokploy include multiples features to make your life easier. - **Traefik Integration**: Automatically integrates with Traefik for routing and load balancing. - **Real-time Monitoring**: Monitor CPU, memory, storage, and network usage, for every resource. - **Docker Management**: Easily deploy and manage Docker containers. -- **CLI/API**: Manage your applications and databases using the command line or trought the API. +- **CLI/API**: Manage your applications and databases using the command line or through the API. - **Notifications**: Get notified when your deployments are successful or failed (Slack, Discord, Telegram, Email, etc.) - **Multi Server**: Deploy and manager your applications remotely to external servers. - **Self-Hosted**: Self-host Dokploy on your VPS. From 522f8baec75ea014de277126fdcc608cb9a33eb7 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Thu, 24 Oct 2024 01:07:02 -0600 Subject: [PATCH 2/3] fix(dokploy): add missing --archive to mongodump --- packages/server/src/utils/backups/mongo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/server/src/utils/backups/mongo.ts b/packages/server/src/utils/backups/mongo.ts index 6578a84a..95dd9005 100644 --- a/packages/server/src/utils/backups/mongo.ts +++ b/packages/server/src/utils/backups/mongo.ts @@ -29,7 +29,7 @@ export const runMongoBackup = async (mongo: Mongo, backup: BackupSchedule) => { mongo.serverId, appName, ); - const mongoDumpCommand = `docker exec ${containerId} sh -c "mongodump -d '${database}' -u '${databaseUser}' -p '${databasePassword}' --authenticationDatabase=admin --gzip"`; + const mongoDumpCommand = `docker exec ${containerId} sh -c "mongodump -d '${database}' -u '${databaseUser}' -p '${databasePassword}' --archive --authenticationDatabase=admin --gzip"`; await execAsyncRemote( mongo.serverId, @@ -37,7 +37,7 @@ export const runMongoBackup = async (mongo: Mongo, backup: BackupSchedule) => { ); } else { const { Id: containerId } = await getServiceContainer(appName); - const mongoDumpCommand = `docker exec ${containerId} sh -c "mongodump -d '${database}' -u '${databaseUser}' -p '${databasePassword}' --authenticationDatabase=admin --gzip"`; + const mongoDumpCommand = `docker exec ${containerId} sh -c "mongodump -d '${database}' -u '${databaseUser}' -p '${databasePassword}' --archive --authenticationDatabase=admin --gzip"`; await execAsync(`${mongoDumpCommand} | ${rcloneCommand}`); } From 85d6ff90128487ef280fccdf923a13849957ab8d Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Thu, 24 Oct 2024 01:11:43 -0600 Subject: [PATCH 3/3] chore(version): bump version --- apps/dokploy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/package.json b/apps/dokploy/package.json index 0bfd938c..31da458e 100644 --- a/apps/dokploy/package.json +++ b/apps/dokploy/package.json @@ -1,6 +1,6 @@ { "name": "dokploy", - "version": "v0.10.2", + "version": "v0.10.3", "private": true, "license": "Apache-2.0", "type": "module",