diff --git a/apps/allinone/README.md b/apps/allinone/README.md new file mode 100644 index 00000000..6a7c22c7 --- /dev/null +++ b/apps/allinone/README.md @@ -0,0 +1,3 @@ +# allinone + +斗鱼,虎牙,抖音等直播平台的直播源代理程序,支持4K! \ No newline at end of file diff --git a/apps/allinone/data.yml b/apps/allinone/data.yml new file mode 100644 index 00000000..a48b21c6 --- /dev/null +++ b/apps/allinone/data.yml @@ -0,0 +1,19 @@ +name: AllInOne +tags: + - 多媒体 +title: 直播源代理程序 +description: 直播源代理程序 +additionalProperties: + key: allinone + name: AllInOne + tags: + - Media + shortDescZh: 直播源代理程序 + shortDescEn: Live feed agent program + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://hub.docker.com/r/youshandefeiyang/allinone + github: https://hub.docker.com/r/youshandefeiyang/allinone + document: https://hub.docker.com/r/youshandefeiyang/allinone diff --git a/apps/allinone/latest/.env.sample b/apps/allinone/latest/.env.sample new file mode 100644 index 00000000..478d0707 --- /dev/null +++ b/apps/allinone/latest/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="allinone" +PANEL_APP_PORT_HTTP=40292 +PRIVILEGED_MODE="true" diff --git a/apps/allinone/latest/data.yml b/apps/allinone/latest/data.yml new file mode 100644 index 00000000..8083960e --- /dev/null +++ b/apps/allinone/latest/data.yml @@ -0,0 +1,22 @@ +additionalProperties: + formFields: + - default: "40292" + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: "true" + edit: true + envKey: PRIVILEGED_MODE + labelEn: Privileged Mode + labelZh: 特权模式 + required: true + type: select + values: + - label: "True" + value: "true" + - label: "False" + value: "false" diff --git a/apps/allinone/latest/docker-compose.yml b/apps/allinone/latest/docker-compose.yml new file mode 100644 index 00000000..89d78177 --- /dev/null +++ b/apps/allinone/latest/docker-compose.yml @@ -0,0 +1,16 @@ +services: + allinone: + image: "youshandefeiyang/allinone:latest" + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + privileged: ${PRIVILEGED_MODE} + ports: + - "${PANEL_APP_PORT_HTTP}:35455" + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/allinone/logo.png b/apps/allinone/logo.png new file mode 100644 index 00000000..9cec3e62 Binary files /dev/null and b/apps/allinone/logo.png differ