omv7:docker_in_omv

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
omv7:docker_in_omv [2024/04/28 17:51] – [Examples of configuration of some containers] chenteomv7:docker_in_omv [2024/04/28 20:01] – [Nginx Proxy Manager] chente
Line 634: Line 634:
       * ...<html><body><table width="100%" border="0"><tr><td colspan="2" style="background-color:#2C6700;height:30px;"><strong><span style="color:#FFFFFF;font-size:110%;">&#160; Advanced configuration       * ...<html><body><table width="100%" border="0"><tr><td colspan="2" style="background-color:#2C6700;height:30px;"><strong><span style="color:#FFFFFF;font-size:110%;">&#160; Advanced configuration
 </span></strong></td></tr><tr><td style="background-color:#e7fae1;height:25px;width:380px;"> </span></strong></td></tr><tr><td style="background-color:#e7fae1;height:25px;width:380px;">
-You can use relative paths, for example ./config equals the /appdata folder of the plugin configuration.+You can use relative paths. Set the volume mapping in the compose file:<br> 
 +<b>./config:/config</b><br> 
 +will create the folder<br> 
 +<b>${PATH_TO_APPDATA}/jellyfin/config</b><br> 
 +on the host.
 </tr></table></body></html> </tr></table></body></html>
       * In the first line we are mapping the ///config// folder of the jellyfin container to a folder on our system. The ///config// folder is the one that contains the jellyfin configuration files, the database, users and passwords, plugins, etc. We want this folder to be located on a drive with access speed. So we map it to our ///appdata// folder that we have configured on a fast disk, ideal for managing a large database. A fast disk will allow Jellyfin to quickly read movie covers, etc. from the television and everything will be better.       * In the first line we are mapping the ///config// folder of the jellyfin container to a folder on our system. The ///config// folder is the one that contains the jellyfin configuration files, the database, users and passwords, plugins, etc. We want this folder to be located on a drive with access speed. So we map it to our ///appdata// folder that we have configured on a fast disk, ideal for managing a large database. A fast disk will allow Jellyfin to quickly read movie covers, etc. from the television and everything will be better.
Line 817: Line 821:
     * In the OMV GUI go to SYSTEM > WORKBENCH and change those two ports to others. For example, change 80 to 8888 and 443 to 8443. Or whatever you want that is not in use.     * In the OMV GUI go to SYSTEM > WORKBENCH and change those two ports to others. For example, change 80 to 8888 and 443 to 8443. Or whatever you want that is not in use.
     * When you change them you will have to add the port to your browser's IP to access the OMV GUI. Example: %%http://192.168.1.50:8888%%     * When you change them you will have to add the port to your browser's IP to access the OMV GUI. Example: %%http://192.168.1.50:8888%%
 +<html><body><table width="100%" border="0"><tr><td colspan="2" style="background-color:#2C6700;height:30px;"><strong><span style="color:#FFFFFF;font-size:110%;">&#160; Advanced configuration.
 +</span></strong></td></tr><tr><td style="background-color:#e7fae1;height:25px;width:380px;">
 +NPM requires ports 80 and 443 on the router to validate Let's Encrypt certificates. You can free those ports by changing the ones used by the OMV GUI as suggested or you can do a forwarding from the router to the container.<br>
 +To do this, forward 80 and 443 on the router to, for example, 30080 and 30443 with the server's IP. In the NPM container it collects these ports using:<br>
 +- 30080:80<br>
 +- 30443:443<br>
 +The result will be the same, the container will receive the traffic from those router ports and you will still have the OMV GUI on port 80 and 443 of your local network.
 +</tr></table></body></html>
 + 
 [[https://nginxproxymanager.com/|{{ :omv7:dockeromv7-21.png?200|Go to -> https://nginxproxymanager.com/}}]] [[https://nginxproxymanager.com/|{{ :omv7:dockeromv7-21.png?200|Go to -> https://nginxproxymanager.com/}}]]
 <html><body><pre><code> <html><body><pre><code>
  • omv7/docker_in_omv.txt
  • Last modified: 2024/05/10 17:41
  • by chente