docker部署sing-box-subscribe 订阅转换

前言:

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
喜欢就支持一下吧
点赞14 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容