1
0

Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2025-04-13 13:11:58 +00:00
parent 86f0357d5f
commit f1691168d1
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CONTAINER_NAME="emby-amilys"
DATA_PATH="./data/config"
MOUNT_PATH2="./data/mnt2"
MOUNT_PATH="./data/mnt1"
PANEL_APP_PORT_HTTP="40258"
PANEL_APP_PORT_HTTPS="40259"
TIME_ZONE="Asia/Shanghai"

View File

@@ -0,0 +1,46 @@
additionalProperties:
formFields:
- default: 40258
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP 端口
required: true
rule: paramPort
type: number
- default: 40259
edit: true
envKey: PANEL_APP_PORT_HTTPS
labelEn: HTTPS Port
labelZh: HTTPS 端口
required: true
rule: paramPort
type: number
- default: ./data/config
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: ./data/mnt1
edit: true
envKey: MOUNT_PATH
labelEn: Mount folder path
labelZh: 挂载文件夹路径
required: true
type: text
- default: ./data/mnt2
edit: true
envKey: MOUNT_PATH2
labelEn: Mount folder path 2
labelZh: 挂载文件夹路径2
required: true
type: text
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true
type: text

View File

@@ -0,0 +1,30 @@
services:
emby-amilys:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8096"
- "${PANEL_APP_PORT_HTTPS}:8920"
volumes:
- "${DATA_PATH}:/config"
- "${MOUNT_PATH}:/mnt/share1"
- "${MOUNT_PATH2}:/mnt/share2"
environment:
- UID=1000
- GID=1000
- GIDLIST=1000,0
- TZ=${TIME_ZONE}
# - NVIDIA_VISIBLE_DEVICES=all # 映射NVIDIA显卡
# - NVIDIA_DRIVER_CAPABILITIES=all # 映射NVIDIA显卡
#runtime: nvidia # Expose NVIDIA GPUs
devices:
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
#- /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
image: amilys/embyserver:4.9.0.43
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true