chore(deps): update greper/certd docker tag to v1.38.12 (#4100)
This commit is contained in:
10
apps/certd/1.38.12/.env.sample
Normal file
10
apps/certd/1.38.12/.env.sample
Normal file
@@ -0,0 +1,10 @@
|
||||
CONTAINER_NAME="certd"
|
||||
DATA_PATH="./data"
|
||||
DNS_1="223.5.5.5"
|
||||
DNS_2="119.29.29.29"
|
||||
HTTPS_PROXY=""
|
||||
HTTP_PROXY=""
|
||||
IMMEDIATE_TRIGGER="false"
|
||||
PANEL_APP_PORT_HTTP=40311
|
||||
RESET_ADMIN_PASSWD="false"
|
||||
TIME_ZONE="Asia/Shanghai"
|
||||
103
apps/certd/1.38.12/data.yml
Normal file
103
apps/certd/1.38.12/data.yml
Normal file
@@ -0,0 +1,103 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "40311"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
label:
|
||||
en: Port
|
||||
zh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
label:
|
||||
en: Data Path
|
||||
zh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "223.5.5.5"
|
||||
edit: true
|
||||
envKey: DNS_1
|
||||
labelEn: Primary DNS
|
||||
labelZh: 主 DNS
|
||||
label:
|
||||
en: Primary DNS
|
||||
zh: 主 DNS
|
||||
required: true
|
||||
type: text
|
||||
- default: "119.29.29.29"
|
||||
edit: true
|
||||
envKey: DNS_2
|
||||
labelEn: Secondary DNS
|
||||
labelZh: 次 DNS
|
||||
label:
|
||||
en: Secondary DNS
|
||||
zh: 次 DNS
|
||||
required: true
|
||||
type: text
|
||||
- default: "Asia/Shanghai"
|
||||
edit: true
|
||||
envKey: TIME_ZONE
|
||||
labelEn: Time Zone
|
||||
labelZh: 时区
|
||||
label:
|
||||
en: Time Zone
|
||||
zh: 时区
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: HTTPS_PROXY
|
||||
labelEn: HTTPS Proxy
|
||||
labelZh: HTTPS 代理
|
||||
label:
|
||||
en: HTTPS Proxy
|
||||
zh: HTTPS 代理
|
||||
required: false
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: HTTP_PROXY
|
||||
labelEn: HTTP Proxy
|
||||
labelZh: HTTP 代理
|
||||
label:
|
||||
en: HTTP Proxy
|
||||
zh: HTTP 代理
|
||||
required: false
|
||||
type: text
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: RESET_ADMIN_PASSWD
|
||||
labelEn: Reset Admin Password
|
||||
labelZh: 重置管理员密码
|
||||
label:
|
||||
en: Reset Admin Password
|
||||
zh: 重置管理员密码
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: "true"
|
||||
value: "true"
|
||||
- label: "false"
|
||||
value: "false"
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: IMMEDIATE_TRIGGER
|
||||
labelEn: Immediate trigger of cron
|
||||
labelZh: 立即触发定时任务
|
||||
label:
|
||||
en: Immediate trigger of cron
|
||||
zh: 立即触发定时任务
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: "true"
|
||||
value: "true"
|
||||
- label: "false"
|
||||
value: "false"
|
||||
26
apps/certd/1.38.12/docker-compose.yml
Normal file
26
apps/certd/1.38.12/docker-compose.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
services:
|
||||
certd:
|
||||
image: "greper/certd:1.38.12"
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
volumes:
|
||||
- ${DATA_PATH}:/app/data
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:7001"
|
||||
dns:
|
||||
- ${DNS_1}
|
||||
- ${DNS_2}
|
||||
environment:
|
||||
- TZ=${TIME_ZONE}
|
||||
- HTTPS_PROXY=${HTTPS_PROXY}
|
||||
- HTTP_PROXY=${HTTP_PROXY}
|
||||
- certd_system_resetAdminPasswd=${RESET_ADMIN_PASSWD}
|
||||
- certd_cron_immediateTriggerOnce=${IMMEDIATE_TRIGGER}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user