chore(deps): update moonrailgun/tailchat docker tag to v1.11.7 (#2077)

* chore(deps): update moonrailgun/tailchat docker tag to v1.11.7

* Update app version [skip ci]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
This commit is contained in:
renovate[bot]
2024-09-08 21:51:21 +08:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> github-action update-app-version
parent 12705a972e
commit 41ef978f0a
2 changed files with 2 additions and 2 deletions
+138
View File
@@ -0,0 +1,138 @@
additionalProperties:
formFields:
- default: 11000
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: ""
edit: true
envKey: PANEL_DB_HOST
key: redis
labelEn: Redis Service
labelZh: 缓存服务服务
required: true
type: service
- default: ""
envKey: PANEL_REDIS_ROOT_PASSWORD
labelEn: Redis Service Password
labelZh: 缓存服务服务密码
required: true
type: password
- default: ""
edit: true
envKey: MONGO_HOST
key: mongodb
labelEn: Database Service
labelZh: 数据库服务
required: true
type: service
- default: tailchat
edit: true
envKey: MONGO_DB
labelEn: Database Name
labelZh: 数据库名
required: true
rule: paramCommon
type: text
- default: ""
edit: true
envKey: PANEL_DB_ROOT_USER
labelEn: Database User Name
labelZh: 数据库用户名
required: true
rule: paramCommon
type: text
- default: ""
edit: true
envKey: PANEL_DB_ROOT_PASSWORD
labelEn: Database User Password
labelZh: 数据库密码
required: true
rule: paramCommon
type: password
- default: ""
edit: true
envKey: MINIO_HOST
key: minio
labelEn: Storage Service
labelZh: 文件存储服务
required: true
type: service
- default: ""
edit: true
envKey: PANEL_MINIO_ROOT_USER
labelEn: User
labelZh: 文件存储服务用户名
required: true
rule: paramCommon
type: text
- default: ""
edit: true
envKey: PANEL_MINIO_ROOT_PASSWORD
labelEn: User
labelZh: 文件存储服务密码
required: true
rule: paramComplexity
type: password
- default: any-random-text
edit: true
envKey: SECRET
labelEn: Secret
labelZh: 秘钥
random: true
required: true
rule: paramComplexity
type: text
- default: http://localhost:11000
edit: true
envKey: API_URL
labelEn: External URL
labelZh: 外部访问地址
required: true
rule: paramExtUrl
type: text
- default: ""
edit: true
envKey: SMTP_SENDER
labelEn: SMTP Sender
labelZh: 邮件服务发送人
required: false
rule: paramExtUrl
type: text
- default: 11002
edit: true
envKey: PANEL_APP_PORT_ADMIN
labelEn: Admin Port
labelZh: 后台管理平台端口
required: true
rule: paramPort
type: number
- default: "tailchat"
edit: true
envKey: ADMIN_USERNAME
labelEn: Admin Username
labelZh: 后台管理平台用户名
required: true
rule: paramCommon
type: text
- default: admin-password
edit: true
envKey: ADMIN_PASSWORD
labelEn: Admin Password
labelZh: 后台管理平台密码
random: true
required: true
rule: paramCommon
type: text
- default: ""
edit: true
envKey: SMTP_URI
labelEn: SMTP Sender
labelZh: 邮件服务URI
required: false
rule: paramExtUrl
type: text
+56
View File
@@ -0,0 +1,56 @@
services:
tailchat:
container_name: ${CONTAINER_NAME}
restart: unless-stopped
image: moonrailgun/tailchat:1.11.7
networks:
- 1panel-network
environment:
- SERVICEDIR=services,plugins
- LOGGER=true
- LOGLEVEL=info
- PORT=11000
- REDIS_URL=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- TRANSPORTER=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- MONGO_URL=mongodb://${PANEL_DB_ROOT_USER}:${PANEL_DB_ROOT_PASSWORD}@${MONGO_HOST}:27017/${MONGO_DB}?authSource=admin
- MINIO_URL=${MINIO_HOST}:9000
- MINIO_USER=${PANEL_MINIO_ROOT_USER}
- MINIO_PASS=${PANEL_MINIO_ROOT_PASSWORD}
- SMTP_SENDER=${SMTP_SENDER}
- SMTP_URI=${SMTP_URI}
- SECRET=${SECRET}
- API_URL=${API_URL}
ports:
- ${PANEL_APP_PORT_HTTP}:11000
labels:
createdBy: "Apps"
tailchat-admin:
container_name: ${CONTAINER_NAME}-admin
restart: unless-stopped
image: moonrailgun/tailchat:1.11.7
networks:
- 1panel-network
environment:
- ADMIN_PORT=3000
- ADMIN_USER=${ADMIN_USERNAME}
- ADMIN_PASS=${ADMIN_PASSWORD}
- LOGGER=true
- LOGLEVEL=info
- REDIS_URL=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- TRANSPORTER=redis://:${PANEL_REDIS_ROOT_PASSWORD}@${PANEL_DB_HOST}:6379
- MONGO_URL=mongodb://${PANEL_DB_ROOT_USER}:${PANEL_DB_ROOT_PASSWORD}@${MONGO_HOST}:27017/${MONGO_DB}?authSource=admin
- MINIO_URL=${MINIO_HOST}:9001
- MINIO_USER=${PANEL_MINIO_ROOT_USER}
- MINIO_PASS=${PANEL_MINIO_ROOT_PASSWORD}
- SMTP_SENDER=${SMTP_SENDER}
- SMTP_URI=${SMTP_URI}
- SECRET=${SECRET}
- API_URL=${API_URL}
ports:
- ${PANEL_APP_PORT_ADMIN}:3000
labels:
createdBy: "Apps"
command: pnpm start:admin
networks:
1panel-network:
external: true