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,7 @@
CONTAINER_NAME="oryx"
PANEL_APP_PORT_HTTP="2022"
PANEL_APP_PORT_HTTPS="2443"
RTMP_PORT="1935"
SRT_PORT="10080"
WEBRTC_PORT="8000"
DATA_PATH="./data"

View File

@@ -0,0 +1,39 @@
additionalProperties: #固定参数
formFields:
- default: 2022
envKey: PANEL_APP_PORT_HTTP
labelEn: Web Port
labelZh: Web面板端口
required: true
type: number
- default: 2443
envKey: PANEL_APP_PORT_HTTPS
labelEn: HTTPS Web Port
labelZh: HTTPS Web面板端口
required: true
type: number
- default: 1935
envKey: RTMP_PORT
labelEn: RTMP Port
labelZh: RTMP端口
required: true
type: number
- default: 10080
envKey: SRT_PORT
labelEn: SRT Port
labelZh: SRT端口
required: true
type: number
- default: 8000
envKey: WEBRTC_PORT
labelEn: WebRTC Port
labelZh: WebRTC端口
required: true
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据目录
required: true
type: text

View File

@@ -0,0 +1,24 @@
version: "3"
services:
halo:
image: ossrs/oryx:5.15.20
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
volumes:
- ${DATA_PATH}:/data
ports:
- ${PANEL_APP_PORT_HTTP}:2022/tcp
- ${PANEL_APP_PORT_HTTP}:2022/udp
- ${PANEL_APP_PORT_HTTPS}:2443/tcp
- ${PANEL_APP_PORT_HTTPS}:2443/udp
- ${RTMP_PORT}:1935/tcp
- ${SRT_PORT}:10080/udp
- ${WEBRTC_PORT}:8000/udp
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true