chore(deps): update pglombardo/pwpush docker tag to v1.69.3 (localApps) (#4381)
This commit is contained in:
7
apps/passwordpusher/1.69.3/.env.sample
Normal file
7
apps/passwordpusher/1.69.3/.env.sample
Normal file
@@ -0,0 +1,7 @@
|
||||
CONTAINER_NAME="passwordpusher"
|
||||
PANEL_APP_PORT_HTTP="40180"
|
||||
PANEL_DB_HOST="mysql"
|
||||
PWPUSHER_DB_PORT="3306"
|
||||
PANEL_DB_NAME="passwordpusher"
|
||||
PANEL_DB_USER="passwordpusher"
|
||||
PANEL_DB_USER_PASSWORD="MyDBPWD_brls9UwcRasl"
|
||||
69
apps/passwordpusher/1.69.3/data.yml
Normal file
69
apps/passwordpusher/1.69.3/data.yml
Normal file
@@ -0,0 +1,69 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_DB_HOST
|
||||
labelEn: Database Service
|
||||
labelZh: 数据库服务
|
||||
required: true
|
||||
type: service
|
||||
default: mysql
|
||||
labelEn: Database Service
|
||||
labelZh: 数据库服务
|
||||
label:
|
||||
en: Database Service
|
||||
zh: 数据库服务
|
||||
params:
|
||||
- envKey: PWPUSHER_DB_PORT
|
||||
key: mysql
|
||||
type: param
|
||||
value: "3306"
|
||||
required: true
|
||||
type: apps
|
||||
values:
|
||||
- label: MySQL
|
||||
value: mysql
|
||||
- default: passwordpusher
|
||||
envKey: PANEL_DB_NAME
|
||||
labelEn: Database
|
||||
labelZh: 数据库名
|
||||
label:
|
||||
en: Database
|
||||
zh: 数据库名
|
||||
random: true
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: passwordpusher
|
||||
envKey: PANEL_DB_USER
|
||||
labelEn: User
|
||||
labelZh: 数据库用户
|
||||
label:
|
||||
en: User
|
||||
zh: 数据库用户
|
||||
random: true
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: passwordpusher
|
||||
envKey: PANEL_DB_USER_PASSWORD
|
||||
labelEn: Password
|
||||
labelZh: 数据库用户密码
|
||||
label:
|
||||
en: Password
|
||||
zh: 数据库用户密码
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: 40180
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
label:
|
||||
en: Port
|
||||
zh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
17
apps/passwordpusher/1.69.3/docker-compose.yml
Normal file
17
apps/passwordpusher/1.69.3/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
passwordpusher:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:5100"
|
||||
environment:
|
||||
- DATABASE_URL=mysql2://${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@${PANEL_DB_HOST}:${PWPUSHER_DB_PORT}/${PANEL_DB_NAME}
|
||||
image: pglombardo/pwpush:1.69.3
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user