Skip to content

Commit 326c444

Browse files
Bot Updating Documentation
1 parent d7f0a87 commit 326c444

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

docs/images/docker-sabnzbd.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,15 @@ Initial setup is done via `http://<your-ip>:8080`.
5353

5454
See the [SABnzbd wiki](https://sabnzbd.org/wiki/) for more information.
5555

56-
### Download folders
56+
### Media folders
5757

58-
We have set `/incomplete-downloads` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability for atomic moves (TL;DR instant file moves, rather than copy+delete) of files while processing content.
58+
We have set `/incomplete-downloads` and `/downloads` as optional paths, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content.
5959

60-
Use the optional paths if you don't understand, or don't want atomic moves. Whichever paths you choose to use, make sure to set the `Completed Download Folder` and the `Temporary Download Folder` in the SABnzbd gui settings, under `Folders`.
60+
Use the optional paths if you don't understand, or don't want hardlinks/atomic moves.
6161

62-
The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this.
62+
??? tip "Well planned paths"
63+
64+
The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this.
6365

6466
## Read-Only Operation
6567

@@ -91,8 +93,8 @@ services:
9193
- TZ=Etc/UTC
9294
volumes:
9395
- /path/to/sabnzbd/config:/config
94-
- /path/to/downloads:/downloads #optional
9596
- /path/to/incomplete/downloads:/incomplete-downloads #optional
97+
- /path/to/downloads:/downloads #optional
9698
ports:
9799
- 8080:8080
98100
restart: unless-stopped
@@ -108,8 +110,8 @@ docker run -d \
108110
-e TZ=Etc/UTC \
109111
-p 8080:8080 \
110112
-v /path/to/sabnzbd/config:/config \
111-
-v /path/to/downloads:/downloads `#optional` \
112113
-v /path/to/incomplete/downloads:/incomplete-downloads `#optional` \
114+
-v /path/to/downloads:/downloads `#optional` \
113115
--restart unless-stopped \
114116
lscr.io/linuxserver/sabnzbd:latest
115117
```
@@ -137,8 +139,8 @@ Containers are configured using parameters passed at runtime (such as those abov
137139
| Volume | Function |
138140
| :----: | --- |
139141
| `/config` | Persistent config files |
140-
| `/downloads` | Local path for finished downloads. |
141142
| `/incomplete-downloads` | Local path for incomplete-downloads. |
143+
| `/downloads` | Local path for finished downloads. |
142144

143145
#### Miscellaneous Options
144146

0 commit comments

Comments
 (0)