Merge branch 'canary' into 139-multi-server-feature

This commit is contained in:
Mauricio Siu
2024-09-21 22:52:44 -06:00
9 changed files with 137 additions and 27 deletions

View File

@@ -253,7 +253,7 @@ export const AddTemplate = ({ projectId }: Props) => {
</Link>
)}
<Link
href={`https://github.com/dokploy/dokploy/tree/canary/templates/${template.id}`}
href={`https://github.com/Dokploy/dokploy/tree/canary/apps/dokploy/templates/${template.id}`}
target="_blank"
className={
"text-sm text-muted-foreground p-3 rounded-full hover:bg-border items-center flex transition-colors"

View File

@@ -63,8 +63,8 @@ export const ShowProjects = () => {
project?.mysql.length === 0 &&
project?.postgres.length === 0 &&
project?.redis.length === 0 &&
project?.applications.length === 0;
project?.compose.length === 0;
project?.applications.length === 0 &&
project?.compose.length === 0;
const totalServices =
project?.mariadb.length +