前言:
sing-box-subscribe
订阅转换可以帮助我们快速部署singbox分流json
配置文件
开始:
项目github已经有相关搭建教程,因为我的服务器是ubuntu
,所以我还是喜欢docker
部署,这里记录下Dockerfile
制作docker镜像部署。
git
拉取项目:
# git clone项目
git clone https://github.com/Toperlock/sing-box-subscribe.git
- 创建并编写
Dockerfile
cd sing-box-subscribe
touch Dockerfile
nano Dockerfile
填写以下内容
FROM python:3.9-slim
COPY . /sing-box-subscribe
WORKDIR /sing-box-subscribe
RUN \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "api/app.py"]
ctrl+x
输入y
保存文件
修改api/app.py
目录里的app.py
最后一行app.run(debug=True)
修改为app.run(debug=True, host='0.0.0.0')
并保存
- 编译镜像并运行
docker build -t sing-box:latest .
docker run -d -p 5000:5000 --restart always sing-box:latest
或者编写docker-compose.yml
touch docker-compose.yml
nano docker-compose.yml
version: '3'
services:
sing-box:
build: .
ports:
- "5000:5000"
restart: always
docker-compose up -d
编译运行
后记:
访问http://ip:5000
进入webui
根据提示输入机场订阅地址即可自行转换sing-box
配置文件。
当然如果闲麻烦也可以将镜像替换为博客的镜像
docker-compose.yml
version: '3'
services:
sing-box:
image: herozmy/sub-sing-box:latest
container_name: sub-sing-box
ports:
- "5000:5000"
restart: always
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容