首页
首页
文章目录
  1. 1.data文件夹中的文件
  2. 2.docker-compose.yml配置

pandora-next配置

1.data文件夹中的文件

https://github.com/pandora-next/deploy
下载data文件夹,并配置tokens.json中的token

在需要授权的服务器上,执行以下命令获取授权:

curl -fLO “https://dash.pandoranext.com/data/p3ryYsxo9sYn0Me87jyUhfHhIGH1C2LTaO7oBQ6xs3M/license.jwt"

或者

curl -fL “https://dash.pandoranext.com/data/p3ryYsxo9sYn0Me87jyUhfHhIGH1C2LTaO7oBQ6xs3M/license.jwt" > license.jwt

然后将license.jwt放到data中

2.docker-compose.yml配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
   
version: '3'

services:

  pandora-next:

    image: pengzhile/pandora-next

    container_name: PandoraNext

    restart: always

    ports:

      - 8091:8181

    volumes:

      - ./data:/data

启动docker:
docker-compose up -d