mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat(templates): add excalidraw
This commit is contained in:
BIN
public/templates/excalidraw.jpg
Normal file
BIN
public/templates/excalidraw.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
17
templates/excalidraw/docker-compose.yml
Normal file
17
templates/excalidraw/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
excalidraw:
|
||||||
|
networks:
|
||||||
|
- dokploy-network
|
||||||
|
image: excalidraw/excalidraw:latest
|
||||||
|
ports:
|
||||||
|
- ${EXCALIDRAW_PORT}
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.routers.${HASH}.rule=Host(`${EXCALIDRAW_HOST}`)
|
||||||
|
- traefik.http.services.${HASH}.loadbalancer.server.port=${EXCALIDRAW_PORT}
|
||||||
|
|
||||||
|
networks:
|
||||||
|
dokploy-network:
|
||||||
|
external: true
|
||||||
20
templates/excalidraw/index.ts
Normal file
20
templates/excalidraw/index.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import {
|
||||||
|
generateHash,
|
||||||
|
generateRandomDomain,
|
||||||
|
type Template,
|
||||||
|
type Schema,
|
||||||
|
} from "../utils";
|
||||||
|
|
||||||
|
export function generate(schema: Schema): Template {
|
||||||
|
const mainServiceHash = generateHash(schema.projectName);
|
||||||
|
const randomDomain = generateRandomDomain(schema);
|
||||||
|
const envs = [
|
||||||
|
`EXCALIDRAW_HOST=${randomDomain}`,
|
||||||
|
"EXCALIDRAW_PORT=80",
|
||||||
|
`HASH=${mainServiceHash}`,
|
||||||
|
];
|
||||||
|
|
||||||
|
return {
|
||||||
|
envs,
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -182,4 +182,19 @@ export const templates: TemplateData[] = [
|
|||||||
tags: ["cms"],
|
tags: ["cms"],
|
||||||
load: () => import("./appsmith/index").then((m) => m.generate),
|
load: () => import("./appsmith/index").then((m) => m.generate),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "excalidraw",
|
||||||
|
name: "Excalidraw",
|
||||||
|
version: "latest",
|
||||||
|
description:
|
||||||
|
"Excalidraw is a free and open source online diagramming tool that lets you easily create and share beautiful diagrams.",
|
||||||
|
logo: "excalidraw.jpg",
|
||||||
|
links: {
|
||||||
|
github: "https://github.com/excalidraw/excalidraw",
|
||||||
|
website: "https://excalidraw.com/",
|
||||||
|
docs: "https://docs.excalidraw.com/",
|
||||||
|
},
|
||||||
|
tags: ["drawing"],
|
||||||
|
load: () => import("./excalidraw/index").then((m) => m.generate),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user