Examples how to set up your paths INSIDE your applications
Examples - How to set up your paths INSIDE your applications
</span>
</a>
@ -3768,7 +3768,7 @@
<divclass="admonition warning">
<pclass="admonition-title">To get Hardlinks and Atomic-Moves working with unRAID,<br>You will need to make use of <u><strong>ONE</strong></u> share with subfolders.</p>
</div>
<p>In this example, I'm using my own setup and the preferred share <code>data</code>.</p>
<p>In this example, I'm using my setup and the preferred share <code>data</code>.</p>
<p>Go to your dashboard and select <code>Shares</code> on the navigation bar, then choose <code>Add Share</code>.</p>
<divclass="tabbed-set tabbed-alternate"data-tabs="2:3"><inputchecked="checked"id="unraid-612-no-cache"name="__tabbed_2"type="radio"/><inputid="unraid-612-cache"name="__tabbed_2"type="radio"/><inputid="unraid-611_1"name="__tabbed_2"type="radio"/><divclass="tabbed-labels"><labelfor="unraid-612-no-cache">unRAID 6.12 (No Cache)</label><labelfor="unraid-612-cache">unRAID 6.12 (Cache)</label><labelfor="unraid-611_1">unRAID 6.11</label></div>
<divclass="tabbed-content">
@ -3846,13 +3846,13 @@
<!-- END INCLUDE -->
<p><em>I'm using lower-case on all folders on purpose, being Linux is case-sensitive.</em></p>
<p>The <code>data</code> folder has sub-folders for <code>torrents</code> and <code>usenet</code>, and each of these has sub-folders for <code>tv</code>, <code>movie</code> and <code>music</code> downloads to keep things organized. The <code>media</code> folder has nicely named <code>TV</code>, <code>Movies</code> and <code>Music</code> sub-folders, this is where your library resides, and what you’d pass to Plex, Emby or JellyFin.</p>
<p>The <code>data</code> folder has sub-folders for <code>torrents</code> and <code>usenet</code>, and each of these has sub-folders for <code>tv</code>, <code>movie</code>, and <code>music</code> downloads to keep things organized. The <code>media</code> folder has nicely named <code>TV</code>, <code>Movies</code>, and <code>Music</code> sub-folders, this is where your library resides, and what you’d pass to Plex, Emby, or JellyFin.</p>
<p>You will need to create these subfolders yourself. You can do this in any way you prefer, but the fastest way to create all the necessary subfolders would be to use the terminal (explained below). Alternatively, Krusader or WinSCP are popular choices if you are unsure.</p>
<h3id="fastest-way-to-create-the-needed-subfolders">Fastest way to create the needed subfolders<aclass="headerlink"href="#fastest-way-to-create-the-needed-subfolders"title="Permanent link"></a></h3>
<p>The fastest way to create all the necessary subfolders would be to use the terminal, use a program like <ahref="https://www.putty.org/"rel="noopener noreferrer"target="_blank">PuTTy</a> or use the terminal from the dashboard.
These options will automatically create the required subfolders for your media library as well as your preferred download client(s).
If you use both torrents and Usenet, use both commands.</p>
<h4id="if-you-use-usenet">If you use usenet<aclass="headerlink"href="#if-you-use-usenet"title="Permanent link"></a></h4>
<h4id="if-you-use-usenet">If you use Usenet<aclass="headerlink"href="#if-you-use-usenet"title="Permanent link"></a></h4>
<h4id="if-you-use-torrents">If you use torrents<aclass="headerlink"href="#if-you-use-torrents"title="Permanent link"></a></h4>
@ -3868,13 +3868,44 @@ If you use both torrents and Usenet, use both commands.</p>
<!-- END INCLUDE -->
<h2id="setting-up-the-containers">Setting up the containers<aclass="headerlink"href="#setting-up-the-containers"title="Permanent link"></a></h2>
<divclass="admonition tip">
<pclass="admonition-title">Create a custom docker network</p>
<p>Why would you want a custom docker network?</p>
<p>A major benefit of having your Docker containers on the same custom Docker network is that they will be able to communicate with other using their container names, rather than having to use IP addresses.</p>
<p>Unraid doesn't create a custom docker network by default, you need to create one yourself.</p>
<p>When adding/editing the paths make sure you click on the <code>EDIT</code> button to add/edit the paths correctly.</p>
<p><aclass="glightbox"href="../images/unraid-docker-click-edit.png"data-type="image"data-width="100%"data-height="auto"data-desc-position="bottom"><imgalt="!Click on Edit"src="../images/unraid-docker-click-edit.png"/></a></p>
</li>
<li>
<p>Don't forget to remove all individual location mounts, for example <code>/movies</code>, <code>/tv</code>, <code>/books</code>, or <code>/downloads</code>, so you can avoid making mistakes by using them. You only need the <code>/config</code> mount, and then whichever paths/mounts/volumes are described in this guide.</p>
</li>
</ol>
<divclass="admonition info">
<pclass="admonition-title">Info</p>
<p>unRAID makes it pretty clear which is the Host Path and Container Path.</p>
<p><code>Container Path:</code> => The path that will be used from inside the container.</p>
<p><code>Host Path:</code> => The actual/absolute path used on your unRAID Server (The Host).</p>
<divclass="admonition tip">
<pclass="admonition-title">Make sure you enabled the advanced view at the top right corner and click on the <code>EDIT</code> button to edit the paths correctly.</p>
<p>Sonarr, Radarr and Lidarr get access to everything because the download folder(s) and media folder will need to look like and be one mount, on the file system. Hard links will work properly and any moves will be atomic, rather than copying and deleting.</p>
<p>Sonarr, Radarr, and Lidarr get access to everything because the download folder(s) and media folder will need to look like and be one mount, on the file system. Hard links will work properly and any moves will be atomic, rather than copying and deleting.</p>
</div>
<!-- BEGIN INCLUDE ../../../includes/file-and-folder-structure/docker-tree-full.md -->
<p>Plex, Emby, JellyFin and Bazarr only need access to your media library, which can have any number of sub-folders (Movies, Kids Movies, TV, Documentary TV and/or Music).</p>
<p>Plex, Emby, JellyFin, and Bazarr only need access to your media library, which can have any number of sub-folders (Movies, Kids Movies, TV, Documentary TV, and/or Music).</p>
</div>
<!-- BEGIN INCLUDE ../../../includes/file-and-folder-structure/docker-tree-media.md -->
<h3id="examples-how-to-set-up-your-paths-inside-your-applications">Examples how to set up your paths INSIDE your applications<aclass="headerlink"href="#examples-how-to-set-up-your-paths-inside-your-applications"title="Permanent link"></a></h3>
<h3id="examples-how-to-set-up-your-paths-inside-your-applications">Examples - How to set up your paths INSIDE your applications<aclass="headerlink"href="#examples-how-to-set-up-your-paths-inside-your-applications"title="Permanent link"></a></h3>
<p><strong>Don't forget to look at the <ahref="/File-and-Folder-Structure/Examples/">Examples</a> of how to set up your paths INSIDE your applications.</strong></p>
<pclass="admonition-title">Videos are generally outdated very fast, so make sure you always follow and double-check with the written guide.</p>
</div>
<p>Big Thanks to IBRACORP for noticing this Guide and creating a Video covering this unRAID section.</p>
<p>The reason why I have this video at the end is because I want the users to ACTUALLY LEARN and UNDERSTAND why it's recommended to use this folder structure before going straight to a YouTube video.</p>
<p><iframewidth="560"height="315"src="https://www.youtube.com/embed/AMcHsQJ7My0"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe></p>
@ -4013,7 +4047,7 @@ If you use both torrents and Usenet, use both commands.</p>