发布应用 Neko 分发版

Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
Meng Sen
2025-08-12 14:09:32 +08:00
parent e69ccd0ba0
commit b30fef76df
90 changed files with 1395 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/brave:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

20
apps/neko-brave/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Neko (Brave版)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/brave.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/neko-brave/data.yml Normal file
View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-brave
name: Neko (Brave版)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-brave/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/chromium:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,20 @@
# Neko (Chromium版)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
![chromium](https://neko.m1k1o.net/img/icons/chromium.svg)
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-chromium
name: Neko (Chromium版)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-chromium/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/google-chrome:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,20 @@
# Neko (Google Chrome版版)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/google-chrome.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-google-chrome
name: Neko (Google Chrome版)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/kde:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

20
apps/neko-kde/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Neko (Kde 丰富桌面环境)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
![kde](https://neko.m1k1o.net/img/icons/kde.svg)
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/neko-kde/data.yml Normal file
View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-kde
name: Neko (Kde丰富桌面环境)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-kde/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/microsoft-edge:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,20 @@
# Neko (Microsoft Edge版)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/microsoft-edge.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-microsoft-edge
name: Neko (Microsoft Edge版)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/remmina:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,20 @@
# Neko (Remmina 远程桌面客户端)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/remmina.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-remmina
name: Neko (Remmina远程桌面客户端)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-remmina/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/tor-browser:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

View File

@@ -0,0 +1,20 @@
# Neko (洋葱浏览器版)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/tor-browser.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-tor-browser
name: Neko (Tor Browser版)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/vlc:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

20
apps/neko-vlc/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Neko (Vlc 媒体播放器)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/vlc.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/neko-vlc/data.yml Normal file
View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-vlc
name: Neko (Vlc媒体播放器)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-vlc/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
required: true
rule: paramPort
type: number
- default: "56000-56100"
edit: true
envKey: PANEL_APP_PORT_WEBRTC_EPR
labelZh: WebRTC 端口范围
labelEn: WebRTC port range
required: true
type: text
- default: "admin"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: 管理员密码
required: true
type: password
- default: "neko"
edit: true
envKey: NEKO_MEMBER_MULTIUSER_USER_PASSWORD
labelZh: 用户密码
labelEn: 用户密码
required: true
type: password
- default: "1920x1080@30"
edit: true
envKey: NEKO_DESKTOP_SCREEN
labelZh: 桌面分辨率
labelEn: Desktop Resolution
required: true
type: text
- default: "127.0.0.1"
edit: true
envKey: NEKO_WEBRTC_NAT1TO1
labelZh: 访问主机 (NAT1TO1)
labelEn: Access Host (NAT1TO1)
required: true
type: text

View File

@@ -0,0 +1,28 @@
networks:
1panel-network:
external: true
services:
neko:
image: ghcr.io/m1k1o/neko/xfce:3.0.6
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
cap_add:
- SYS_ADMIN
shm_size: "2gb"
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}
- ${PANEL_APP_PORT_WEBRTC_EPR}:${PANEL_APP_PORT_WEBRTC_EPR}/udp
env_file:
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
- ${ENV_FILE:-/etc/1panel/envs/default.env}
environment:
- TZ=Asia/Shanghai
- NEKO_WEBRTC_EPR=${PANEL_APP_PORT_WEBRTC_EPR}
- NEKO_WEBRTC_ICELITE=1
- NEKO_WEBRTC_IP_RETRIEVAL_URL=https://ifconfig.co/ip

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env

View File

@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

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

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -f .env ]; then
source .env
# setup-1 add default values
CURRENT_DIR=$(pwd)
sed -i '/^ENV_FILE=/d' .env
sed -i '/^GLOBAL_ENV_FILE=/d' .env
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi

20
apps/neko-xfce/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Neko (Xface 轻量桌面环境)
在 docker 中运行并使用 WebRTC 的自托管虚拟浏览器
![Neko](https://file.lifebus.top/imgs/neko_cover.png)
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
## 简介
<img height="128px" src="https://neko.m1k1o.net/img/icons/xfce.svg" width="128px"/>
Neko这是一个在 Docker 中运行并使用 WebRTC 技术的自托管虚拟浏览器。Neko
是一款功能强大的工具,可让您在虚拟环境中运行功能齐全的浏览器,使您能够从任何地方安全、私密地访问互联网。使用
Neko您可以像在普通浏览器上一样浏览网页、运行应用程序和执行其他任务所有这些都在安全且隔离的环境中进行。无论您是想要测试
Web 应用程序的开发人员、寻求安全浏览体验的注重隐私的用户还是只是想利用虚拟浏览器的便利性和灵活性Neko 都是完美的解决方案。
---
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)

14
apps/neko-xfce/data.yml Normal file
View File

@@ -0,0 +1,14 @@
additionalProperties:
key: neko-xfce
name: Neko (Xface轻量桌面环境)
tags:
- WebSite
- Local
shortDescZh: 虚拟浏览器
shortDescEn: Virtual Browser
type: website
crossVersionUpdate: true
limit: 0
website: https://neko.m1k1o.net/
github: https://github.com/m1k1o/neko/
document: https://neko.m1k1o.net/

BIN
apps/neko-xfce/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB