Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ By default, the pattern is `.*|~*`, skipping all files that begin with a

#### Selective Sync

To use Selective sync, create a file named `skip_file` and list the files
To use Selective sync, create a file named `sync_list` and list the files
and folders you want to sync. Each line of the file represents a path to a
file or directory relative from the root of your OneDrive.

Expand All @@ -74,11 +74,11 @@ Work/ProjectX
notes.txt
```

Once you have created your `skip_file`, mount it in your container as `/skip_file`:
Once you have created your `sync_list`, mount it in your container as `/sync_list`:

```shell
docker run -it --restart on-failure --name onedrive
-v /path/to/onedrive:/onedrive
-v /path/to/skip_file:/skip_file
-v /path/to/sync_list:/sync_list
remyjette/onedrive
```