Moved: Misc - How To Set Up Hardlinks and Atomic-Moves => Hardlinks - Hardlinks and Instant Moves to it's own section
```yml Updated: Misc - How To Set Up Hardlinks and Atomic-Moves => Hardlinks - Hardlinks and Instant Moves - Changed: Complete overhaul of the Hardlinks and Instant Moves - Moved: Misc - How To Set Up Hardlinks and Atomic-Moves => Hardlinks - Hardlinks and Instant Moves to it's own section - Changed: Splitted up the installation method to make it easier to maintain and hopefully more clear to read. ```pull/215/head
@ -0,0 +1,4 @@
|
||||
nav:
|
||||
- Hardlinks - Atomic Moves: Hardlinks-and-Instant-Moves.md
|
||||
- How-to-setup-for
|
||||
- Examples: Examples.md
|
@ -0,0 +1,113 @@
|
||||
# Examples
|
||||
|
||||
!!! info
|
||||
|
||||
Pick one path layout and use it for all of them.
|
||||
|
||||
It doesn't matter if you prefer to use `/data`, `/shared`, `/storage` or whatever.
|
||||
|
||||
The screenshots in the examples are using the following root path `/data`
|
||||
|
||||
- [Sonarr](#sonarr)
|
||||
- [Radarr](#radarr)
|
||||
- [SABnzbd](#sabnzbd)
|
||||
- [NZBGet](#nzbget)
|
||||
- [qBittorrent](#qbittorent)
|
||||
- [Deluge](#deluge)
|
||||
- [ruTorrent](#rutorrent)
|
||||
|
||||
??? example "Sonarr Examples"
|
||||
|
||||
## Sonarr
|
||||
|
||||
`Settings` => `Media Management` => `Importing`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Media Management` => `Root Folders`
|
||||
|
||||

|
||||
|
||||
`Series` => `Add New`
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
??? example "Radarr Examples"
|
||||
|
||||
## Radarr
|
||||
|
||||
`Settings` => `Media Management` => `Importing`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Media Management` => `Root Folders`
|
||||
|
||||

|
||||
|
||||
`Movies` => `Add New`
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
??? example "SABnzbd Examples"
|
||||
|
||||
#### SABnzbd
|
||||
|
||||
`SABnzbd config` => `Folders`
|
||||
|
||||

|
||||
|
||||
`SABnzbd config` => `Categories`
|
||||
|
||||

|
||||
|
||||
??? example "NZBGet Examples"
|
||||
|
||||
## NZBGet
|
||||
|
||||
`Settings` => `PATHS`
|
||||
|
||||

|
||||
|
||||
`Settings` => `CATEGORIES`
|
||||
|
||||

|
||||
|
||||
??? example "qBittorrent Examples"
|
||||
|
||||
#### qBittorrent
|
||||
|
||||
`Options` => `Downloads`
|
||||
|
||||

|
||||
|
||||
??? example "Deluge Example"
|
||||
|
||||
## Deluge
|
||||
|
||||
`Preferences` => `Downloads`
|
||||
|
||||

|
||||
|
||||
??? example "ruTorrent Examples"
|
||||
|
||||
## ruTorrent
|
||||
|
||||
`../config/rtorrent/config/rtorrent.rc` (path to your appdata)
|
||||
|
||||

|
||||
|
||||
`Settings` => `Downloads`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Autotools`
|
||||
|
||||

|
||||
|
||||
------
|
||||
|
||||
Big Thnx to [fryfrog](https://github.com/fryfrog){:target="_blank" rel="noopener noreferrer"} for his [Docker Guide](https://wiki.servarr.com/Docker_Guide){:target="_blank" rel="noopener noreferrer"} that I used as basis for this guide.
|
@ -0,0 +1,171 @@
|
||||
# Dockstarter
|
||||
|
||||
!!! note
|
||||
|
||||
I'm using the default paths in this example, and will keep the other paths unchanged so nothing will break if you make a mistake.
|
||||
|
||||
## Folder Structure
|
||||
|
||||
We're going to use a mounted drive that we're going to use as storage for downloads and your media.
|
||||
In this example the mounted drive will be mounted to `/mnt/` with the following folder structure.
|
||||
|
||||
```none
|
||||
storage
|
||||
├── downloads
|
||||
| ├── torrents
|
||||
│ | ├── movies
|
||||
│ | ├── music
|
||||
│ | └── tv
|
||||
| └── usenet
|
||||
│ ├── movies
|
||||
│ ├── music
|
||||
│ └── tv
|
||||
└── medialibrary
|
||||
├── movies
|
||||
├── music
|
||||
└── tv
|
||||
```
|
||||
|
||||
## Changes to the .env
|
||||
|
||||
To accomplish this we need to change first a few paths in your `.env` (Usually `~/.docker/compose/.env`)
|
||||
|
||||
``` yaml
|
||||
# Global Settings
|
||||
COMPOSE_HTTP_TIMEOUT=60
|
||||
DOCKERCONFDIR=~/.config/appdata
|
||||
DOCKERGID=999
|
||||
DOCKERHOSTNAME=DockSTARTer
|
||||
DOCKERLOGGING_MAXFILE=10
|
||||
DOCKERLOGGING_MAXSIZE=200k
|
||||
DOCKERSTORAGEDIR=/mnt/storage
|
||||
PGID=1000
|
||||
PUID=1000
|
||||
TZ=America/Chicago
|
||||
|
||||
# DEPRECATED Settings (will be removed at the end of 2020)
|
||||
DOCKERSHAREDDIR=~/shared
|
||||
DOWNLOADSDIR=/mnt/downloads
|
||||
MEDIADIR_AUDIOBOOKS=/mnt/medialibrary/audiobooks
|
||||
MEDIADIR_BOOKS=/mnt/medialibrary/books
|
||||
MEDIADIR_COMICS=/mnt/medialibrary/comics
|
||||
MEDIADIR_MOVIES=/mnt/medialibrary/movies
|
||||
MEDIADIR_MUSIC=/mnt/medialibrary/music
|
||||
MEDIADIR_TV=/mnt/medialibrary/tv
|
||||
```
|
||||
|
||||
### Changes to your paths
|
||||
|
||||
When that's all set then you will need to change the paths you're going to use in the containers from:
|
||||
|
||||
`/downloads` => `/storage/downloads`
|
||||
|
||||
`/audiobooks` => `/storage/medialibrary/audiobooks`
|
||||
|
||||
`/books` => `/storage/medialibrary/books`
|
||||
|
||||
`/comics` => `/storage/medialibrary/comics`
|
||||
|
||||
`/movies` => `/storage/medialibrary/movies`
|
||||
|
||||
`/music` => `/storage/medialibrary/music`
|
||||
|
||||
`/tv` => `/storage/medialibrary/tv`
|
||||
|
||||
## DockSTARTer Examples
|
||||
|
||||
!!! info
|
||||
|
||||
The screenshots in the examples are using the following root path `/storage`
|
||||
|
||||
??? example "Sonarr Examples"
|
||||
|
||||
###### Sonarr
|
||||
|
||||
`Settings` => `Media Management` => `Importing`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Media Management` => `Root Folders`
|
||||
|
||||

|
||||
|
||||
`Series` => `Add New`
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
??? example "Radarr Examples"
|
||||
|
||||
###### Radarr
|
||||
|
||||
`Settings` => `Media Management` => `Importing`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Media Management` => `Root Folders`
|
||||
|
||||

|
||||
|
||||
`Movies` => `Add New`
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
??? example "SABnzbd Examples"
|
||||
|
||||
###### SABnzbd
|
||||
|
||||
`SABnzbd config` => `Folders`
|
||||
|
||||

|
||||
|
||||
`SABnzbd config` => `Categories`
|
||||
|
||||

|
||||
|
||||
??? example "NZBGet Examples"
|
||||
|
||||
###### NZBGet
|
||||
|
||||
`Settings` => `PATHS`
|
||||
|
||||

|
||||
|
||||
`Settings` => `CATEGORIES`
|
||||
|
||||

|
||||
|
||||
??? example "qBittorrent Examples"
|
||||
|
||||
###### qBittorrent
|
||||
|
||||
`Options` => `Downloads`
|
||||
|
||||

|
||||
|
||||
??? example "Deluge Example"
|
||||
|
||||
###### Deluge
|
||||
|
||||
`Preferences` => `Downloads`
|
||||
|
||||

|
||||
|
||||
??? example "ruTorrent Examples"
|
||||
|
||||
###### ruTorrent
|
||||
|
||||
`../config/rtorrent/config/rtorrent.rc` (path to your appdata)
|
||||
|
||||

|
||||
|
||||
`Settings` => `Downloads`
|
||||
|
||||

|
||||
|
||||
`Settings` => `Autotools`
|
||||
|
||||

|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 302 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 157 KiB After Width: | Height: | Size: 157 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,5 @@
|
||||
# How to setup for
|
||||
|
||||
Here you will find a collection How to setup Hardlinks and Instant Moves(Atomic Moves) Guides.
|
||||
|
||||
Choose on the left your installation method.
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
@ -1,6 +1,5 @@
|
||||
nav:
|
||||
- Home: index.md
|
||||
- How to provide a docker compose: how-to-provide-a-docker-compose.md
|
||||
- How To Set Up Hardlinks and Atomic-Moves: how-to-set-up-hardlinks-and-atomic-moves.md
|
||||
- Setup TorGuard for port forwarding: How-to-setup-Torguard-for-port-forwarding.md
|
||||
- x265-4k and Golden Rule: x265-4k.md
|