mirror of
https://github.com/okxlin/appstore.git
synced 2026-02-23 19:37:42 +08:00
feat:添加dpanel到列表
This commit is contained in:
parent
224b835e78
commit
1d45afc7d7
5
apps/dpanel/1.0.4.2/.env.sample
Normal file
5
apps/dpanel/1.0.4.2/.env.sample
Normal file
@ -0,0 +1,5 @@
|
||||
APP_NAME="dpanel"
|
||||
CONTAINER_NAME="dpanel"
|
||||
DATA_PATH="./data"
|
||||
DOCKER_SOCK_PATH="/var/run/docker.sock"
|
||||
PANEL_APP_PORT_HTTP=40283
|
||||
31
apps/dpanel/1.0.4.2/data.yml
Normal file
31
apps/dpanel/1.0.4.2/data.yml
Normal file
@ -0,0 +1,31 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40283"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "dpanel"
|
||||
edit: true
|
||||
envKey: APP_NAME
|
||||
labelEn: Application Name
|
||||
labelZh: 应用名称
|
||||
required: true
|
||||
type: text
|
||||
- default: "/var/run/docker.sock"
|
||||
edit: true
|
||||
envKey: DOCKER_SOCK_PATH
|
||||
labelEn: Docker Socket Path
|
||||
labelZh: Docker 套接字路径
|
||||
required: true
|
||||
type: text
|
||||
20
apps/dpanel/1.0.4.2/docker-compose.yml
Normal file
20
apps/dpanel/1.0.4.2/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
services:
|
||||
dpanel:
|
||||
image: "dpanel/dpanel:1.0.4.2-lite"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||
volumes:
|
||||
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
||||
- ${DATA_PATH}:/dpanel
|
||||
environment:
|
||||
- APP_NAME=${APP_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
11
apps/dpanel/README.md
Normal file
11
apps/dpanel/README.md
Normal file
@ -0,0 +1,11 @@
|
||||
# DPanel
|
||||
|
||||
Docker 可视化面板系统,提供完善的 docker 管理功能。
|
||||
|
||||
# 使用说明
|
||||
|
||||
- 账户密码
|
||||
```
|
||||
username: admin
|
||||
password: admin
|
||||
```
|
||||
19
apps/dpanel/data.yml
Normal file
19
apps/dpanel/data.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: DPanel
|
||||
tags:
|
||||
- 实用工具
|
||||
title: Docker 可视化面板系统
|
||||
description: Docker 可视化面板系统
|
||||
additionalProperties:
|
||||
key: dpanel
|
||||
name: DPanel
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: Docker 可视化面板系统
|
||||
shortDescEn: Docker Visualization Panel System
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://donknap.github.io/dpanel-docs
|
||||
github: https://github.com/donknap/dpanel
|
||||
document: https://donknap.github.io/dpanel-docs
|
||||
5
apps/dpanel/lite/.env.sample
Normal file
5
apps/dpanel/lite/.env.sample
Normal file
@ -0,0 +1,5 @@
|
||||
APP_NAME="dpanel"
|
||||
CONTAINER_NAME="dpanel"
|
||||
DATA_PATH="./data"
|
||||
DOCKER_SOCK_PATH="/var/run/docker.sock"
|
||||
PANEL_APP_PORT_HTTP=40283
|
||||
31
apps/dpanel/lite/data.yml
Normal file
31
apps/dpanel/lite/data.yml
Normal file
@ -0,0 +1,31 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40283"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "dpanel"
|
||||
edit: true
|
||||
envKey: APP_NAME
|
||||
labelEn: Application Name
|
||||
labelZh: 应用名称
|
||||
required: true
|
||||
type: text
|
||||
- default: "/var/run/docker.sock"
|
||||
edit: true
|
||||
envKey: DOCKER_SOCK_PATH
|
||||
labelEn: Docker Socket Path
|
||||
labelZh: Docker 套接字路径
|
||||
required: true
|
||||
type: text
|
||||
20
apps/dpanel/lite/docker-compose.yml
Normal file
20
apps/dpanel/lite/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
services:
|
||||
dpanel:
|
||||
image: "dpanel/dpanel:lite"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:8080"
|
||||
volumes:
|
||||
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
||||
- ${DATA_PATH}:/dpanel
|
||||
environment:
|
||||
- APP_NAME=${APP_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
BIN
apps/dpanel/logo.png
Normal file
BIN
apps/dpanel/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.8 KiB |
Loading…
Reference in New Issue
Block a user