1
0

精简提交历史记录

This commit is contained in:
okxlin
2023-11-09 19:15:01 +08:00
commit 691aa7aac9
1529 changed files with 800341 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
CONTAINER_NAME="obsidian-zh"
PANEL_APP_PORT_HTTP="40166"
PANEL_APP_PORT_VNC="40167"
PANEL_APP_PORT_SSH="40168"
DATA_PATH="./data"
HTTP_PWD="password"
DISPLAY_SIZE="1024x768"
PRIVILEGED_MODE="true"

View File

@@ -0,0 +1,56 @@
additionalProperties:
formFields:
- default: 40166
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP 端口
required: true
rule: paramPort
type: number
- default: 40167
edit: true
envKey: PANEL_APP_PORT_VNC
labelEn: VNC Port
labelZh: VNC 端口
required: true
rule: paramPort
type: number
- default: 40168
edit: true
envKey: PANEL_APP_PORT_SSH
labelEn: SSH Port
labelZh: SSH 端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: password
edit: true
envKey: HTTP_PWD
labelEn: Auth password
labelZh: 密码
random: true
required: true
rule: paramComplexity
type: password
- default: 1024x768
edit: true
envKey: DISPLAY_SIZE
labelEn: Display size
labelZh: 画面尺寸
required: true
type: text
- default: "true"
disabled: true
envKey: PRIVILEGED_MODE
labelEn: Privilege mode switch
labelZh: 特权模式开关
required: true
type: text

View File

@@ -0,0 +1,24 @@
version: '3'
services:
obsidian-zh:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:6090"
- "${PANEL_APP_PORT_VNC}:5900"
- "${PANEL_APP_PORT_SSH}:22"
volumes:
- ${DATA_PATH}/vaults:/vaults
environment:
- PASSWD=${HTTP_PWD}
- SIZE=${DISPLAY_SIZE}
privileged: ${PRIVILEGED_MODE}
image: hcyxsmile/obsidian-docker:v1.0-ob1.3.5
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true