Merge pull request #1665 from Dokploy/canary

🚀 Release v0.21.5
This commit is contained in:
Mauricio Siu
2025-04-08 23:24:19 -06:00
committed by GitHub
3 changed files with 8 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.21.4",
"version": "v0.21.5",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@@ -365,7 +365,9 @@ const Project = (
switch (service.type) {
case "application":
await applicationActions.start.mutateAsync({ applicationId: serviceId });
await applicationActions.start.mutateAsync({
applicationId: serviceId,
});
break;
case "compose":
await composeActions.start.mutateAsync({ composeId: serviceId });
@@ -410,7 +412,9 @@ const Project = (
switch (service.type) {
case "application":
await applicationActions.stop.mutateAsync({ applicationId: serviceId });
await applicationActions.stop.mutateAsync({
applicationId: serviceId,
});
break;
case "compose":
await composeActions.stop.mutateAsync({ composeId: serviceId });

View File

@@ -37,9 +37,9 @@ export const updateServerTraefik = (
servers: [
{
url: `http://dokploy:${process.env.PORT || 3000}`,
passHostHeader: true,
},
],
passHostHeader: true,
},
},
};