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="wps-office"
PANEL_APP_PORT_HTTP="40134"
PANEL_APP_PORT_HTTPS="40135"
DATA_PATH="./data"
TIME_ZONE="Asia/Shanghai"
HTTP_USER="user"
HTTP_PWD="password"
MEM_USE="1gb"

View File

@@ -0,0 +1,55 @@
additionalProperties:
formFields:
- default: 40134
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
required: true
rule: paramPort
type: number
- default: 40135
edit: true
envKey: PANEL_APP_PORT_HTTPS
labelEn: HTTPS Port
labelZh: HTTPS端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true
type: text
- default: user
edit: true
envKey: HTTP_USER
labelEn: http auth user
labelZh: HTTP 用户
required: true
type: text
- default: password
edit: true
envKey: HTTP_PWD
labelEn: http auth password
labelZh: HTTP 密码
random: true
required: true
rule: paramComplexity
type: password
- default: 1gb
edit: true
envKey: MEM_USE
labelEn: Shared memory footprint (512m)
labelZh: 共享内存占用(512m)
required: true
type: text

View File

@@ -0,0 +1,28 @@
version: '3'
services:
wps-office:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
- "${PANEL_APP_PORT_HTTPS}:3001"
volumes:
- "${DATA_PATH}:/config"
environment:
- PUID=1000
- PGID=1000
- TZ=${TIME_ZONE}
- CUSTOM_USER=${HTTP_USER}
- PASSWORD=${HTTP_PWD}
shm_size: ${MEM_USE}
#security_opt:
# - seccomp:unconfined #optional
image: linuxserver/wps-office:latest
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true