Skip to content

open list

https://doc.oplist.org/guide/installation/docker

sh
mkdir -p /opt/openlist

sudo chown -R 1001:1001 /opt/openlist

vim docker-compose.yml

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