1
0

Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2025-04-17 00:37:45 +00:00
parent 88db2c38fb
commit e9d6969e3e
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
AUTH_SECRET="secret_G22QSN"
CONTAINER_NAME="picimpact"
PANEL_APP_PORT_HTTP="40251"
PANEL_DB_HOST="postgresql"
PANEL_DB_HOST_NAME="postgresql"
PANEL_DB_NAME="picimpact_3bti2a"
PANEL_DB_PORT="5432"
PANEL_DB_TYPE="postgresql"
PANEL_DB_USER="picimpact_hpxbcQ"
PANEL_DB_USER_PASSWORD="picimpact_HJB336"

View File

@@ -0,0 +1,57 @@
additionalProperties:
formFields:
- default: 40251
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "secret"
edit: true
envKey: AUTH_SECRET
labelEn: Auth Secret
labelZh: 认证密钥
random: true
required: true
rule: paramComplexity
type: password
- default: postgresql
envKey: PANEL_DB_TYPE
labelEn: Database Service
labelZh: 数据库服务
required: true
type: apps
child:
default: ""
envKey: PANEL_DB_HOST
required: true
type: service
values:
- label: PostgreSQL
value: postgresql
- default: picimpact
envKey: PANEL_DB_NAME
labelEn: Database
labelZh: 数据库名
random: true
required: true
rule: paramCommon
type: text
- default: picimpact
envKey: PANEL_DB_USER
labelEn: User
labelZh: 数据库用户
random: true
required: true
rule: paramCommon
type: text
- default: picimpact
envKey: PANEL_DB_USER_PASSWORD
labelEn: Password
labelZh: 数据库用户密码
random: true
required: true
rule: paramComplexity
type: password

View File

@@ -0,0 +1,18 @@
services:
picimpact:
image: besscroft/picimpact:v2.4.1
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
environment:
- DATABASE_URL=postgres://${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@${PANEL_DB_HOST}:${PANEL_DB_PORT}/${PANEL_DB_NAME}
- AUTH_SECRET=${AUTH_SECRET}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true