mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:添加dweebui到列表
This commit is contained in:
parent
61f927535d
commit
8b2f4ba171
6
apps/dweebui/0.60/.env.sample
Normal file
6
apps/dweebui/0.60/.env.sample
Normal file
@ -0,0 +1,6 @@
|
||||
CONTAINER_NAME="dweebui"
|
||||
DATA_PATH="./data/config"
|
||||
DB_PATH="./data/db.sqlite"
|
||||
DOCKER_SOCK_PATH="/var/run/docker.sock"
|
||||
PANEL_APP_PORT_HTTP=40285
|
||||
SECRET_KEY="MrWiskers"
|
40
apps/dweebui/0.60/data.yml
Normal file
40
apps/dweebui/0.60/data.yml
Normal file
@ -0,0 +1,40 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40285"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data/config"
|
||||
disabled: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "./data/db.sqlite"
|
||||
disabled: true
|
||||
envKey: DB_PATH
|
||||
labelEn: Database Path
|
||||
labelZh: 数据库文件路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "MrWiskers"
|
||||
edit: true
|
||||
envKey: SECRET_KEY
|
||||
labelEn: Secret Key
|
||||
labelZh: 秘钥
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "/var/run/docker.sock"
|
||||
edit: true
|
||||
envKey: DOCKER_SOCK_PATH
|
||||
labelEn: Docker Socket Path
|
||||
labelZh: Docker 套接字路径
|
||||
required: true
|
||||
type: text
|
0
apps/dweebui/0.60/data/db.sqlite
Normal file
0
apps/dweebui/0.60/data/db.sqlite
Normal file
22
apps/dweebui/0.60/docker-compose.yml
Normal file
22
apps/dweebui/0.60/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
services:
|
||||
dweebui:
|
||||
image: "lllllllillllllillll/dweebui:v0.60"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"
|
||||
volumes:
|
||||
- ${DATA_PATH}:/app/config
|
||||
- ${DB_PATH}:/app/database/db.sqlite
|
||||
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
||||
environment:
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
- SECRET=${SECRET_KEY}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
11
apps/dweebui/README.md
Normal file
11
apps/dweebui/README.md
Normal file
@ -0,0 +1,11 @@
|
||||
<h3 align="center"><img width="150" src="https://raw.githubusercontent.com/lllllllillllllillll/DweebUI/main/public/img/logo.png"></h3>
|
||||
<h4 align="center">DweebUI</h4>
|
||||
<h3 align="center">用于管理容器的免费开源 WebUI</h3>
|
||||
<p align="center">
|
||||
<a href=""><img src="https://img.shields.io/github/stars/lllllllillllllillll/DweebUI?style=flat"/></a>
|
||||
<a href="https://github.com/lllllllillllllillll/DweebUI%2Fdev"><img src="https://img.shields.io/github/commit-activity/y/lllllllillllllillll/DweebUI%2Fdev"/></a>
|
||||
<a href="https://github.com/lllllllillllllillll/DweebUI%2Fdev"><img src="https://img.shields.io/github/last-commit/lllllllillllllillll/DweebUI%2Fdev"/></a>
|
||||
<a href="https://hub.docker.com/r/lllllllillllllillll/dweebui"><img src="https://img.shields.io/docker/pulls/lllllllillllllillll/dweebui"/></a>
|
||||
<a href="https://github.com/lllllllillllllillll/DweebUI/blob/main/LICENSE"><img src="https://img.shields.io/github/license/lllllllillllllillll/DweebUI"/></a>
|
||||
<a href="https://www.reddit.com/r/dweebui"><img src="https://img.shields.io/badge/reddit-orange"/></a>
|
||||
</p>
|
19
apps/dweebui/data.yml
Normal file
19
apps/dweebui/data.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: DweebUI
|
||||
tags:
|
||||
- 实用工具
|
||||
title: 一个用于管理容器的 WebUI
|
||||
description: 一个用于管理容器的 WebUI
|
||||
additionalProperties:
|
||||
key: dweebui
|
||||
name: DweebUI
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 一个用于管理容器的 WebUI
|
||||
shortDescEn: A WebUI for managing your containers
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://www.dweebui.com
|
||||
github: https://github.com/lllllllillllllillll/DweebUI
|
||||
document: https://github.com/lllllllillllllillll/DweebUI
|
6
apps/dweebui/latest/.env.sample
Normal file
6
apps/dweebui/latest/.env.sample
Normal file
@ -0,0 +1,6 @@
|
||||
CONTAINER_NAME="dweebui"
|
||||
DATA_PATH="./data/config"
|
||||
DB_PATH="./data/db.sqlite"
|
||||
DOCKER_SOCK_PATH="/var/run/docker.sock"
|
||||
PANEL_APP_PORT_HTTP=40285
|
||||
SECRET_KEY="MrWiskers"
|
40
apps/dweebui/latest/data.yml
Normal file
40
apps/dweebui/latest/data.yml
Normal file
@ -0,0 +1,40 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40285"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data/config"
|
||||
disabled: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "./data/db.sqlite"
|
||||
disabled: true
|
||||
envKey: DB_PATH
|
||||
labelEn: Database Path
|
||||
labelZh: 数据库文件路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "MrWiskers"
|
||||
edit: true
|
||||
envKey: SECRET_KEY
|
||||
labelEn: Secret Key
|
||||
labelZh: 秘钥
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: "/var/run/docker.sock"
|
||||
edit: true
|
||||
envKey: DOCKER_SOCK_PATH
|
||||
labelEn: Docker Socket Path
|
||||
labelZh: Docker 套接字路径
|
||||
required: true
|
||||
type: text
|
0
apps/dweebui/latest/data/db.sqlite
Normal file
0
apps/dweebui/latest/data/db.sqlite
Normal file
22
apps/dweebui/latest/docker-compose.yml
Normal file
22
apps/dweebui/latest/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
services:
|
||||
dweebui:
|
||||
image: "lllllllillllllillll/dweebui:latest"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"
|
||||
volumes:
|
||||
- ${DATA_PATH}:/app/config
|
||||
- ${DB_PATH}:/app/database/db.sqlite
|
||||
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
||||
environment:
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
- SECRET=${SECRET_KEY}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
BIN
apps/dweebui/logo.png
Normal file
BIN
apps/dweebui/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
Loading…
Reference in New Issue
Block a user