1
0

Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2025-03-23 16:21:36 +00:00
parent 3ac14df376
commit 333f3b43b8
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
CONTAINER_NAME="seatable"
DATA_PATH="./data"
MEMCACHED_HOST="memcached"
PANEL_APP_PORT_HTTP="40154"
PANEL_DB_HOST="mysql"
PANEL_DB_ROOT_PASSWORD="mysql_root_password"
SEAFILE_DB_PORT="3306"
REDIS_HOST="redis"
PANEL_REDIS_ROOT_PASSWORD="redis_password"
REDIS_PORT="6379"
TIME_ZONE="Asia/Shanghai"
SERVER_HOSTNAME="example.seatable.com"

View File

@@ -0,0 +1,95 @@
additionalProperties:
formFields:
- default: mysql
envKey: PANEL_DB_TYPE
labelEn: Database Service
labelZh: 数据库服务
required: true
type: apps
values:
- label: MySQL
value: mysql
- label: LocalMySQL
value: localmysql
child:
default: ""
envKey: PANEL_DB_HOST
labelEn: Database Service
labelZh: 数据库服务
required: true
type: service
- default: mysql_root_password
envKey: PANEL_DB_ROOT_PASSWORD
labelEn: Database root password
labelZh: 数据库 root 密码
required: true
type: password
- default: ""
edit: true
envKey: REDIS_HOST
key: redis
labelEn: Redis Service
labelZh: Redis服务
required: true
type: service
- default: "6379"
edit: true
envKey: REDIS_PORT
labelEn: Redis Service Port
labelZh: Redis服务端口
required: true
rule: paramPort
type: number
- default: ""
envKey: PANEL_REDIS_ROOT_PASSWORD
labelEn: Redis Password
labelZh: Redis 密码
required: true
type: password
- default: 40154
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
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: memcached
envKey: MEMCACHED_TYPE
labelEn: Memcached Service
labelZh: Memcached 服务
required: true
type: apps
values:
- label: Memcached
value: memcached
- label: LocalMemcached
value: localmemcached
child:
default: ""
envKey: MEMCACHED_HOST
labelEn: Memcached Service
labelZh: Memcached 服务
required: true
type: service
- default: example.seatable.com
edit: true
envKey: SERVER_HOSTNAME
labelEn: Server hostname
labelZh: 服务端主机名
required: true
type: text

View File

@@ -0,0 +1,24 @@
services:
seatable:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
#- "${PANEL_APP_PORT_HTTPS}:443"
volumes:
- "${DATA_PATH}:/shared"
environment:
- DB_HOST=${PANEL_DB_HOST}
- DB_ROOT_PASSWD=${PANEL_DB_ROOT_PASSWORD}
- TIME_ZONE=${TIME_ZONE}
- SEATABLE_SERVER_HOSTNAME=${SERVER_HOSTNAME}
- SEATABLE_SERVER_LETSENCRYPT=false
image: seatable/seatable-developer:5.2.0
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true