Skip to content

openlist-二开

https://github.com/OpenListTeam/docs

https://docs.openlist.team/zh/

https://hub.docker.com/r/openlistteam/openlist/tags

bash
$ docker run -d --name="openlist" \
  --restart=unless-stopped \
  -v /etc/openlist:/opt/openlist/data \
  -p 5244:5244 \
  -e PUID=0 \
  -e PGID=0 \
  -e UMASK=022 \
  openlistteam/openlist:v4.0.5-aio
yaml
version: '3.3'

services:
  openlist:
    image: registry.cn-hangzhou.aliyuncs.com/istr_office/openlist:v4.0.5-aio
    container_name: openlist
    restart: unless-stopped
    volumes:
      - ./data:/opt/openlist/data
    ports:
      - 5244:5244
    environment:
      - PUID=0
      - PGID=0
      - UMASK=022

admin zGYo8O3E