一个基于 Vue 3 + Express 的网盘资源搜索与转存工具,支持响应式布局,移动端与PC完美适配,可通过 Docker 一键部署。
项目地址:https://github.com/jiangrui1994/CloudSaver
镜像地址:https://hub.docker.com/r/jiangrui1994/cloudsaver
version: "3"
services:
cloudsaver:
image: jiangrui1994/cloudsaver:latest
container_name: cloud-saver
ports:
- "8008:8008"
volumes:
- ./data:/app/data
- ./config:/app/config
restart: unless-stopped
评论