Skip to content

Commit 7be1084

Browse files
authored
Merge pull request #1828 from Dokploy/canary
🚀 Release v0.22.1
2 parents 19a525f + 11a8fcc commit 7be1084

File tree

8 files changed

+25
-8
lines changed

8 files changed

+25
-8
lines changed

.github/sponsors/agentdock.png

14.9 KB
Loading

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,15 @@ For detailed documentation, visit [docs.dokploy.com](https://docs.dokploy.com).
8080

8181
### Premium Supporters 🥇
8282

83-
<div style="display: flex; gap: 30px; flex-wrap: wrap;">
84-
<a href="https://supafort.com/?ref=dokploy" target="_blank"><img src="https://supafort.com/build/q-4Ht4rBZR.webp" alt="Supafort.com" width="190"/></a>
83+
<div style="display: flex; align-items: center; gap: 20px;">
84+
<a href="https://supafort.com/?ref=dokploy" target="_blank" style="display: inline-block; margin-right: 20px;">
85+
<img src="https://supafort.com/build/q-4Ht4rBZR.webp" alt="Supafort.com" height="50"/>
86+
</a>
87+
88+
<a href="https://agentdock.ai/?ref=dokploy" target="_blank" style="display: inline-block; margin-right: 50px;">
89+
<img src=".github/sponsors/agentdock.png" alt="agentdock.ai" height="70"/>
90+
</a>
91+
8592
</div>
8693

8794
<!-- Elite Contributors 🥈 -->

apps/dokploy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dokploy",
3-
"version": "v0.22.0",
3+
"version": "v0.22.1",
44
"private": true,
55
"license": "Apache-2.0",
66
"type": "module",

packages/server/src/utils/backups/compose.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ export const runComposeBackup = async (
3838
if (compose.serverId) {
3939
await execAsyncRemote(compose.serverId, backupCommand);
4040
} else {
41-
await execAsync(backupCommand);
41+
await execAsync(backupCommand, {
42+
shell: "/bin/bash",
43+
});
4244
}
4345

4446
await sendDatabaseBackupNotifications({

packages/server/src/utils/backups/mariadb.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ export const runMariadbBackup = async (
3737
if (mariadb.serverId) {
3838
await execAsyncRemote(mariadb.serverId, backupCommand);
3939
} else {
40-
await execAsync(backupCommand);
40+
await execAsync(backupCommand, {
41+
shell: "/bin/bash",
42+
});
4143
}
4244

4345
await sendDatabaseBackupNotifications({

packages/server/src/utils/backups/mongo.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ export const runMongoBackup = async (mongo: Mongo, backup: BackupSchedule) => {
3535
if (mongo.serverId) {
3636
await execAsyncRemote(mongo.serverId, backupCommand);
3737
} else {
38-
await execAsync(backupCommand);
38+
await execAsync(backupCommand, {
39+
shell: "/bin/bash",
40+
});
3941
}
4042

4143
await sendDatabaseBackupNotifications({

packages/server/src/utils/backups/mysql.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ export const runMySqlBackup = async (mysql: MySql, backup: BackupSchedule) => {
3737
if (mysql.serverId) {
3838
await execAsyncRemote(mysql.serverId, backupCommand);
3939
} else {
40-
await execAsync(backupCommand);
40+
await execAsync(backupCommand, {
41+
shell: "/bin/bash",
42+
});
4143
}
4244
await sendDatabaseBackupNotifications({
4345
applicationName: name,

packages/server/src/utils/backups/postgres.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ export const runPostgresBackup = async (
3939
if (postgres.serverId) {
4040
await execAsyncRemote(postgres.serverId, backupCommand);
4141
} else {
42-
await execAsync(backupCommand);
42+
await execAsync(backupCommand, {
43+
shell: "/bin/bash",
44+
});
4345
}
4446

4547
await sendDatabaseBackupNotifications({

0 commit comments

Comments
 (0)