Openlist

作者:Administrator 发布时间: 2026-01-28 阅读量:14 评论数:0

一、openlist部署

1.docker 部署

#拉取镜像
sudo docker pull openlistteam/openlist:latest
#创建目录
sudo mkdir /etc/openlist   
#运行容器
docker run -d --restart=unless-stopped -v /etc/openlist:/opt/openlist/data -p 5244:5244 -e UMASK=022 --name="openlist" openlistteam/openlist:latest

2.Docker Compose部署

# docker-compose.yml
services:
  openlist:
    image: 'openlistteam/openlist:latest'
    container_name: openlist
    user: '0:0' # Please replace `0:0` with the actual user ID and group ID you want to use to run OpenList.
    volumes:
      - '/etc/openlist:/opt/openlist/data'
    ports:
      - '5244:5244'
    environment:
      - UMASK=022
    restart: unless-stopped

3.linux脚本一件部署

注:部署后openlist采用随机密码需要查看日志获取admin密码

#查询docker  openlist容器日志
sudo docker logs openlist

其他参考官方文档:https://doc.oplist.org.cn/guide/installation/script

二、挂载网盘

1、百度网盘挂载

进入https://api.oplist.org/获取刷新令牌码

ScreenShot_2026-01-28_123303_330.png

添加存储

ScreenShot_2026-01-28_123923_451.png

填入刷新令牌

ScreenShot_2026-01-28_124029_128.png

百度网盘下载文件限制20mb大小解决方法

edge浏览器插件

https://microsoftedge.microsoft.com/addons/detail/useragent-switcher-and-m/cnjkedgepfdpdbnepgmajmmjdjkjnifa

火狐浏览器插件

https://addons.mozilla.org/zh-CN/firefox/addon/user-agent-string-switcher/

谷歌浏览器插件

https://chromewebstore.google.com/detail/user-agent-switcher-and-m/bhchdcejhohfmigjafbampogmaanbfkg

根据对应的浏览器安装扩展,并将userAgent改成pan.baidu.com。备注:会影响百度搜索,所以下载完毕后将userAgent重置,否则无法百度搜索。

再去openlist下载文件,百度网盘必须要会员。

ScreenShot_2026-01-28_124517_864.png

Xdown下载器下载

下载Xdown:https://www.idmtorrent.com/

进入选项-HTTP找到User-Agent,改为pan.baidu.com

ScreenShot_2026-01-28_125241_514.png

2、123网盘挂载

123网盘比较好挂载,直接登录账号就行。

1.png
2.png

3、阿里云网盘挂载

进入https://api.oplist.org/获取刷新令牌码

3.png

添加存储,将刷新令牌填入,与百度网盘类似。

4.png

SMB挂载

1.飞牛创建文件夹如aa。windows创建一个共享文件夹。

ecb4e045-d76a-4dc4-b6ac-188338cce692.png

2.openlist配置

注意:分享名称与文件夹名称一直,否则无法正常挂载

8696d893-d1a8-4e13-8b0e-860f547fb812.png

webdav挂载

ScreenShot_2026-02-24_121803_848.png

评论