BiliHistory b站历史记录

秋星祭 发布于 2025-04-13 2 次阅读 预计阅读时间: 1 分钟 docker 最后更新于 2025-04-13 116 字 无~


AI 摘要

"一键搭建B站历史记录查询工具!开源项目BiliHistory让你轻松找回已删除的B站观看记录。通过Docker快速部署前后端,支持本地数据存储,随时查看你的B站足迹。跟着教程3步搞定,再也不怕视频被删!" (99字)

https://github.com/2977094657/BiliHistoryFrontend

克隆仓库到本地

mkdir -p ~/docker-build && cd ~/docker-build
git clone https://github.com/2977094657/BilibiliHistoryFetcher.git
git clone https://github.com/2977094657/BiliHistoryFrontend.git

构建后端镜像

cd BilibiliHistoryFetcher
docker build -t bili-history-backend .

构建前端镜像

cd ../BiliHistoryFrontend
docker build -t bili-history-frontend .

运行后端容器

docker run -d \
  --name bili-backend \
  -p 23167:8899 \
  -v /Users/apple/DockerDesktop/bili-history:/app/data \
  -e TZ=Asia/Shanghai \
  bili-backend:dev

运行前端容器

docker run -d \
  --name bili-frontend \
  -p 2233:80 \
  -e API_URL=https://bsj.suifracti.com \
  bili-frontend:latest
ねぇ、到底该怎么做才好呀 已经,什么都不明白了
最后更新于 2025-04-13