Processed apps directory via GitHub Actions
This commit is contained in:
@@ -36,7 +36,7 @@ services:
|
||||
- MODE=astrbot
|
||||
- NAPCAT_UID=${NAPCAT_UID:-1000}
|
||||
- NAPCAT_GID=${NAPCAT_GID:-1000}
|
||||
image: mlikiowa/napcat-docker:v4.8.109
|
||||
image: mlikiowa/napcat-docker:v4.8.110
|
||||
mac_address: ${NAPCAT_MAC_ADDRESS:-02:42:ac:11:00:02}
|
||||
networks:
|
||||
- 1panel-network
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
- verificationCodeTimeout=10
|
||||
- appname=casdoor
|
||||
- authState=casdoor
|
||||
image: casbin/casdoor:v2.55.0
|
||||
image: casbin/casdoor:v2.56.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}?sslmode=disable
|
||||
image: getfider/fider:v0.28.1
|
||||
image: getfider/fider:v0.29.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
9
appstore/nodepassdash/3.0.0/.env
Normal file
9
appstore/nodepassdash/3.0.0/.env
Normal file
@@ -0,0 +1,9 @@
|
||||
# 网络模式 [必填]
|
||||
NETWORK_MODE=host
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
NODEPASSDASH_ROOT_PATH=/home/nodepassdash
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=3000
|
||||
|
||||
33
appstore/nodepassdash/3.0.0/data.yml
Normal file
33
appstore/nodepassdash/3.0.0/data.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "host"
|
||||
edit: true
|
||||
envKey: NETWORK_MODE
|
||||
labelZh: 网络模式
|
||||
labelEn: Network mode
|
||||
required: true
|
||||
type: select
|
||||
values:
|
||||
- label: 主机网络模式
|
||||
value: "host"
|
||||
- label: 桥接网络模式
|
||||
value: "bridge"
|
||||
- label: 无网络模式
|
||||
value: "none"
|
||||
- label: 1panel-network
|
||||
value: "1panel-network"
|
||||
- default: "/home/nodepassdash"
|
||||
edit: true
|
||||
envKey: NODEPASSDASH_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 3000
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
22
appstore/nodepassdash/3.0.0/docker-compose.yml
Normal file
22
appstore/nodepassdash/3.0.0/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
nodepassdash:
|
||||
container_name: nodepassdash
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
image: ghcr.io/nodepassproject/nodepassdash:3.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
network_mode: ${NETWORK_MODE}
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
restart: always
|
||||
volumes:
|
||||
- ${NODEPASSDASH_ROOT_PATH}/logs:/app/logs
|
||||
- ${NODEPASSDASH_ROOT_PATH}/public:/app/public
|
||||
@@ -7,7 +7,7 @@ additionalProperties:
|
||||
shortDescZh: 现代化的 NodePass 管理界面
|
||||
shortDescEn: NodePass Dashboard
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
crossVersionUpdate: false
|
||||
limit: 0
|
||||
website: https://github.com/NodePassProject/NodePassDash/
|
||||
github: https://github.com/NodePassProject/NodePassDash/
|
||||
|
||||
@@ -57,7 +57,7 @@ services:
|
||||
- -f
|
||||
- http://localhost:1200/healthz?key=${ACCESS_KEY}
|
||||
timeout: 10s
|
||||
image: diygod/rsshub:2025-09-10
|
||||
image: diygod/rsshub:2025-09-11
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- USER_PASSWORD_REQUIREMENTS=15
|
||||
- IMAGE_MAX_SIZE=15M
|
||||
- STORAGE_PROVIDER=local
|
||||
image: anirdev/slink:v1.6.5
|
||||
image: anirdev/slink:v1.6.6
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
2
appstore/slink/1.6.6/envs/default.env
Normal file
2
appstore/slink/1.6.6/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
appstore/slink/1.6.6/envs/global.env
Normal file
2
appstore/slink/1.6.6/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
17
appstore/slink/1.6.6/scripts/init.sh
Normal file
17
appstore/slink/1.6.6/scripts/init.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
10
appstore/slink/1.6.6/scripts/uninstall.sh
Normal file
10
appstore/slink/1.6.6/scripts/uninstall.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
17
appstore/slink/1.6.6/scripts/upgrade.sh
Normal file
17
appstore/slink/1.6.6/scripts/upgrade.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
- MODE=astrbot
|
||||
- NAPCAT_UID=${NAPCAT_UID:-1000}
|
||||
- NAPCAT_GID=${NAPCAT_GID:-1000}
|
||||
image: mlikiowa/napcat-docker:v4.8.109
|
||||
image: mlikiowa/napcat-docker:v4.8.110
|
||||
mac_address: ${NAPCAT_MAC_ADDRESS:-02:42:ac:11:00:02}
|
||||
networks:
|
||||
- 1panel-network
|
||||
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
- verificationCodeTimeout=10
|
||||
- appname=casdoor
|
||||
- authState=casdoor
|
||||
image: casbin/casdoor:v2.55.0
|
||||
image: casbin/casdoor:v2.56.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}?sslmode=disable
|
||||
image: getfider/fider:v0.28.1
|
||||
image: getfider/fider:v0.29.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
9
dockge/nodepassdash_3_0_0/.env
Normal file
9
dockge/nodepassdash_3_0_0/.env
Normal file
@@ -0,0 +1,9 @@
|
||||
# 网络模式 [必填]
|
||||
NETWORK_MODE=host
|
||||
|
||||
# 数据持久化路径 [必填]
|
||||
NODEPASSDASH_ROOT_PATH=/home/nodepassdash
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=3000
|
||||
|
||||
22
dockge/nodepassdash_3_0_0/docker-compose.yml
Normal file
22
dockge/nodepassdash_3_0_0/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
nodepassdash:
|
||||
container_name: nodepassdash
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- PORT=${PANEL_APP_PORT_HTTP}
|
||||
image: ghcr.io/nodepassproject/nodepassdash:3.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
network_mode: ${NETWORK_MODE}
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
restart: always
|
||||
volumes:
|
||||
- ${NODEPASSDASH_ROOT_PATH}/logs:/app/logs
|
||||
- ${NODEPASSDASH_ROOT_PATH}/public:/app/public
|
||||
2
dockge/nodepassdash_3_0_0/envs/default.env
Normal file
2
dockge/nodepassdash_3_0_0/envs/default.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
2
dockge/nodepassdash_3_0_0/envs/global.env
Normal file
2
dockge/nodepassdash_3_0_0/envs/global.env
Normal file
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -57,7 +57,7 @@ services:
|
||||
- -f
|
||||
- http://localhost:1200/healthz?key=${ACCESS_KEY}
|
||||
timeout: 10s
|
||||
image: diygod/rsshub:2025-09-10
|
||||
image: diygod/rsshub:2025-09-11
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- USER_PASSWORD_REQUIREMENTS=15
|
||||
- IMAGE_MAX_SIZE=15M
|
||||
- STORAGE_PROVIDER=local
|
||||
image: anirdev/slink:v1.6.5
|
||||
image: anirdev/slink:v1.6.6
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user