systems:docker_main:install_docker_containers:install_nzbget
Differences
This shows you the differences between two versions of the page.
systems:docker_main:install_docker_containers:install_nzbget [2021/07/16 10:45] – created peter | systems:docker_main:install_docker_containers:install_nzbget [2021/07/16 10:50] (current) – peter | ||
---|---|---|---|
Line 4: | Line 4: | ||
---- | ---- | ||
+ | |||
+ | ===== Create the NZBget Directories ===== | ||
+ | |||
+ | NZBget will store its configuration data in a directory on the Host VM. | ||
+ | |||
+ | On the Ubuntu VM Host, create a directory for this config data. | ||
+ | |||
+ | <code bash> | ||
+ | mkdir / | ||
+ | mkdir / | ||
+ | mkdir / | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** The **downloads** directory will be used by other services too, so not within the **nzbget** directory. | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Determine the UID and GID ===== | ||
+ | |||
+ | On the Ubuntu VM Host: | ||
+ | |||
+ | <code bash> | ||
+ | id peter | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | uid=1000(peter) gid=1000(peter) groups=1000(peter)... | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * In this case 1000. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Install NZBget ===== | ||
+ | |||
+ | In Portainer: | ||
+ | |||
+ | * Select **Stack**. | ||
+ | * Click **Add Stack**. | ||
+ | * Name: **NZBget**. | ||
+ | * Web editor: <file bash docker-compose> | ||
+ | --- | ||
+ | version: " | ||
+ | services: | ||
+ | nzbget: | ||
+ | image: ghcr.io/ | ||
+ | container_name: | ||
+ | environment: | ||
+ | - PUID=1000 | ||
+ | - PGID=1000 | ||
+ | - TZ=Europe/ | ||
+ | volumes: | ||
+ | - / | ||
+ | - / | ||
+ | ports: | ||
+ | - 6789:6789 | ||
+ | restart: unless-stopped | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * **/ | ||
+ | * **/ | ||
+ | * **PUID** and **GUID**: | ||
+ | * Port **6789**: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Confirm NZBget is running ===== | ||
+ | |||
+ | Open Portainer. | ||
+ | |||
+ | Press **F5** to refresh. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE:** This should show the NZBget container running. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Open NZBget ===== | ||
+ | |||
+ | Visit http:// | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * The **6789** port is the port configured for NZBget. | ||
+ | |||
+ | * It is suggested to set this URL in the web browser to be the default loading page. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Setup NZBget ===== | ||
+ | |||
+ | Configure as required. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// | ||
+ | |||
systems/docker_main/install_docker_containers/install_nzbget.1626432306.txt.gz · Last modified: 2021/07/16 10:45 by peter