Deploying a Cloud Resource Search Tool on NAS

Follow the steps below to set up a cloud resource search and save tool on your NAS.

Create a new folder named CloudSaver inside the docker directory. Inside this folder, create two subfolders:

  • config (for configuration files)
  • data (for database data)

Open the Docker application and navigate to the Compose panel. Create a new project with the following settings:

  • Project name: cloudsaver
  • Path: select the path to the CloudSaver folder
  • Source: create a docker-compose.yml file

Add the following content to the docker-compose.yml file:

services:
  cloudsaver:
    image: jiangrui1994/cloudsaver:latest
    container_name: cloud-saver
    ports:
      - 3456:8008 # external access port, customizable
    volumes:
      - ./data:/app/data
      - ./config:/app/config
    restart: unless-stopped

After deployment, access CloudSaver by clicking the link in the container panel or entering NAS_IP:3456 in your browser.

On first access, registration is required. Two codes are important:

  • Registration code: to prevent unauthorized use of your private service.
    • Admin registration code: 230713 (recommended for initial use)
    • Regular user registration code: 9527

After logging in, you can modify the registration code in the settings.

CloudSaver requires adding channels to function properly. Click the gear icon, search for "channel," and click "batch import."

You can find official channel configurations at: https://github.com/jiangrui1994/CloudSaver

In the repository, locate the channel list at: https://www.yuque.com/xiaoruihenbangde/ggogn3/ga6gaaiy5fsyw62l

Paste all the provided channel configurations and click "incremental update."

The following is an example of the configuration list:

[{
  "name": "115网盘资源分享频道",
  "id": "Lsp115"
},
{
  "id": "alyp_1",
  "name": "网盘(高品质)影视"
},
{
  "id": "shareAliyun",
  "name": "阿里云盘发布频道"
},
...]

After importing the channels, you will see available resources on the homepage.

Click on any movie to view available cloud storage options.

Tags: nas CloudSaver docker resource search

Posted on Mon, 17 Aug 2026 16:30:57 +0000 by JeremyCanada26