Sign inSign up

benzbrake/onelist

By benzbrake

Updated over 7 years ago

Docker image of OneList

Image
0

974

benzbrake/onelist repository overview

Docker-OneList

Docker image of OneList

Get Started

Create a config file
{
  "token": "<refresh_token>",
  "location_path": "/",
  "start_directory": "/",
  "threads": 3,
  "diff_seconds": 480,
  "refresh_seconds": 720,
  "metadata_cached_seconds": 768,
  "structure_cached_seconds": 840
}

Then run it by command:

# docker run -v /data/OneList/config.json:/root/OneList/config.json -p 5000:5000 benzbrake/onelist
How to get refresh_token

Click this link on your computer browser, login with your sharepoint account, then your browser would be redirected to show the refresh_token:

Run by docker-compose

Create docker-compose.yml and create config.json

example of docker-compose.yml,

version: '3'

services:
  onelist:
    image: benzbrake/onelist
    container_name: onelist
    restart: always
    volumes:
      - /data/config.json:/root/OneList/config.json
    ports:
      - 5000:5000

Then use commanddocker-compose [-f location of docker-compose.yml] up -d to run OneList.

BTW, you can change the location of config as you want.

License

Copy as you want.

Tag summary

Content type

Image

Digest

Size

55.9 MB

Last updated

over 7 years ago

docker pull benzbrake/onelist