diff --git a/apps/drawio/21.7.5/data.yml b/apps/drawio/21.7.5/data.yml new file mode 100644 index 000000000..574c2eb4c --- /dev/null +++ b/apps/drawio/21.7.5/data.yml @@ -0,0 +1,18 @@ +additionalProperties: + formFields: + - default: 8080 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: HTTP Port + labelZh: HTTP 端口 + required: true + rule: paramPort + type: number + - default: 6443 + edit: true + envKey: PANEL_APP_PORT_HTTPS + labelEn: HTTPS Port + labelZh: HTTPS 端口 + required: true + rule: paramPort + type: number diff --git a/apps/drawio/21.7.5/docker-compose.yml b/apps/drawio/21.7.5/docker-compose.yml new file mode 100644 index 000000000..85dc85794 --- /dev/null +++ b/apps/drawio/21.7.5/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' +services: + drawio: + image: jgraph/drawio:21.7.5 + container_name: ${CONTAINER_NAME} + restart: unless-stopped + networks: + - 1panel-network + ports: + - ${PANEL_APP_PORT_HTTP}:8080 + - ${PANEL_APP_PORT_HTTPS}:8443 + labels: + createdBy: "Apps" +networks: + 1panel-network: + external: true diff --git a/apps/drawio/README.md b/apps/drawio/README.md new file mode 100644 index 000000000..38fcd194c --- /dev/null +++ b/apps/drawio/README.md @@ -0,0 +1,11 @@ +## Drawio + +**Drawio** 是使用 *HTML5* 和 *JavaScript* 开发的免费和开源的跨平台图形绘制软件。它可用于创建各类图形,例如: + +- 流程图 +- 线框 +- UML图 +- 组织图 +- 网络图 + +同时也可以像跨浏览器的Web应用程序一样在线使用,也可以像 *Linux*,*macOS* 和 *Windows* 上的脱机桌面应用程序一样使用。 diff --git a/apps/drawio/data.yml b/apps/drawio/data.yml new file mode 100644 index 000000000..8040759bd --- /dev/null +++ b/apps/drawio/data.yml @@ -0,0 +1,18 @@ +name: Drawio +tags: + - 工具 +title: 免费和开源的跨平台图形绘制软件 +type: 工具 +description: 免费和开源的跨平台图形绘制软件 +additionalProperties: + key: drawio + name: Drawio + tags: + - Tool + shortDescZh: 免费和开源的跨平台图形绘制软件 + shortDescEn: Free and open source cross-platform graphics drawing software + type: tool + crossVersionUpdate: true + limit: 0 + website: https://www.drawio.com/ + github: https://github.com/jgraph/drawio diff --git a/apps/drawio/logo.png b/apps/drawio/logo.png new file mode 100644 index 000000000..0be49392f Binary files /dev/null and b/apps/drawio/logo.png differ