1
0

Update Apps

This commit is contained in:
pooneyy
2025-06-13 18:53:10 +08:00
parent be08a5b4b7
commit e5678a3ec6
437 changed files with 3533 additions and 1195 deletions

View File

@@ -0,0 +1,6 @@
CONTAINER_NAME="smokeping"
PANEL_APP_PORT_HTTP="40213"
DATA_PATH="./data"
MASTER_URL="http://<master-host-ip>:40213/smokeping/"
SHARED_SECRET=""
TIME_ZONE="Asia/Shanghai"

View File

@@ -0,0 +1,39 @@
additionalProperties:
formFields:
- default: 40213
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: http://<master-host-ip>:40213/smokeping/
edit: true
envKey: MASTER_URL
labelEn: Master url
labelZh: 外部访问地址
required: true
rule: paramHttp
type: text
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true
type: text
- default: ''
edit: true
envKey: SHARED_SECRET
labelEn: Master shared secret (slave mode)
labelZh: 主共享密钥 (从属模式)
required: false
type: text

View File

@@ -0,0 +1,25 @@
services:
smokeping:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
image: linuxserver/smokeping:2.9.0
environment:
- PUID=1000
- PGID=1000
- TZ=${TIME_ZONE}
- MASTER_URL=${MASTER_URL}
- SHARED_SECRET=${SHARED_SECRET}
- CACHE_DIR=/tmp
volumes:
- ${DATA_PATH}/config:/config
- ${DATA_PATH}/data:/data
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true