Update Apps
This commit is contained in:
7
apps/oryx/5.15.20/.env.sample
Normal file
7
apps/oryx/5.15.20/.env.sample
Normal 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"
|
||||
39
apps/oryx/5.15.20/data.yml
Normal file
39
apps/oryx/5.15.20/data.yml
Normal 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
|
||||
24
apps/oryx/5.15.20/docker-compose.yml
Normal file
24
apps/oryx/5.15.20/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user