Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2024-11-26 22:26:23 +00:00
parent 75a83a3447
commit 6b998b1300
5 changed files with 0 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
additionalProperties:
formFields:
- default: "/home/prowlarr"
edit: true
envKey: PROWLARR_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 9696
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
+25
View File
@@ -0,0 +1,25 @@
networks:
1panel-network:
external: true
services:
prowlarr:
image: linuxserver/prowlarr:1.27.0
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:9696
env_file:
- /etc/1panel/envs/global.env
- ${ENV_FILE:-/etc/1panel/envs/default.env}
volumes:
- ${PROWLARR_ROOT_PATH}/config:/config
environment:
- PUID=1000
- PGID=1000
- UMASK=022
- TZ=Asia/Shanghai
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi