|
@@ -0,0 +1,82 @@
|
|
|
+ <!DOCTYPE html>
|
|
|
+ <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+ <head>
|
|
|
+ <title>Running Organizr - A Homelab Services Organizer/Dashboard - in Docker</title>
|
|
|
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="keywords" content="Browser Based,Home Lab,Docker Made Easy,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Application Dashboard,Homelab Dashboard,MySQL,Organizr,Organizr Application Dashboard,Organizr V2,PHP,Docker Made Simple,Docker Simplified,Docker Tutorial,Homelab,Linux,MariaDB,Docker,Docker Container,Docker How To,How To,Tutorial,i12bretro">
|
|
|
+ <meta name="author" content="i12bretro">
|
|
|
+ <meta name="description" content="Running Organizr - A Homelab Services Organizer/Dashboard - in Docker">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <meta name="revised" content="11/28/2023 06:57:42 PM" />
|
|
|
+ <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
|
|
|
+ <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
|
+ <script type="text/javascript" src="includes/js/steps.js"></script>
|
|
|
+ <link href="css/steps.css" rel="stylesheet" type="text/css" />
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div id="gridContainer">
|
|
|
+ <div class="topMargin"></div>
|
|
|
+ <div id="listName" class="topMargin">
|
|
|
+ <h1>Running Organizr - A Homelab Services Organizer/Dashboard - in Docker</h1>
|
|
|
+ </div>
|
|
|
+ <div></div>
|
|
|
+ <div id="content">
|
|
|
+ <h2>What is Organizr?</h2>
|
|
|
+
|
|
|
+<blockquote><em>ORGANIZR aims to be your one stop shop for your Servers Frontend. Do you have quite a bit of services running on your computer or server? Do you have a lot of bookmarks or have to memorize a bunch of ip’s and ports? Well, Organizr is here to help with that... -<a href="https://organizr.app/" target="_blank">https://organizr.app/</a></em></blockquote>
|
|
|
+
|
|
|
+<h2>Installing Docker</h2>
|
|
|
+
|
|
|
+<ol>
|
|
|
+ <li>Log into the Linux based device</li>
|
|
|
+ <li>Run the following commands in the terminal
|
|
|
+ <div class="codeBlock"># install prerequisites<br />
|
|
|
+ sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg-agent -y<br />
|
|
|
+ # add docker gpg key<br />
|
|
|
+ curl -fsSL https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add -<br />
|
|
|
+ # add docker software repository<br />
|
|
|
+ sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release) $(lsb_release -cs) stable"<br />
|
|
|
+ # install docker<br />
|
|
|
+ sudo apt install docker-ce docker-compose containerd.io -y<br />
|
|
|
+ # enable and start docker service<br />
|
|
|
+ sudo systemctl enable docker && sudo systemctl start docker<br />
|
|
|
+ # add the current user to the docker group<br />
|
|
|
+ sudo usermod -aG docker $USER<br />
|
|
|
+ # reauthenticate for the new group membership to take effect<br />
|
|
|
+ su - $USER</div>
|
|
|
+ </li>
|
|
|
+</ol>
|
|
|
+
|
|
|
+<h2>Running the Organizr Container</h2>
|
|
|
+
|
|
|
+<ol>
|
|
|
+ <li>Now that Docker is installed, run the following commands to setup the Organizr Docker container and run it
|
|
|
+ <div class="codeBlock"># create working directory<br />
|
|
|
+ mkdir ~/docker/organizr -p<br />
|
|
|
+ # set ownership on the working directories<br />
|
|
|
+ sudo chown "$USER":"$USER" ~/docker -R<br />
|
|
|
+ # list current uid and gid, note these for later<br />
|
|
|
+ id $user<br />
|
|
|
+ # run the organizr container<br />
|
|
|
+ docker run -d --name=organizr -p 8880:80 -v ~/docker/organizr:/config -e PGID=1000 -e PUID=1000 --restart unless-stopped organizr/organizr</div>
|
|
|
+ </li>
|
|
|
+ <li>Open a web browser and navigate to http://DNSorIP:8880</li>
|
|
|
+ <li>Select Personal from the Install Type dropdown > Click Next</li>
|
|
|
+ <li>Enter an Admin Username, Email and Password > Click Next</li>
|
|
|
+ <li>Open a new browser tab and navigate to https://www.random.org/passwords/?num=1&len=24&format=plain&rnd=new</li>
|
|
|
+ <li>Copy the generated random string > Paste the string in the Hash Key field</li>
|
|
|
+ <li>Go back to the random.org tab and refresh the page to generate a new string</li>
|
|
|
+ <li>Copy the generated random string > Paste the string in the Registration Password</li>
|
|
|
+ <li>Click Next</li>
|
|
|
+ <li>On the Database settings page enter the Database Name organizr and set the Database Location to /config/www/organizr/data/ > Click the Test/Create Path button > Click Next</li>
|
|
|
+ <li>Review the Summary > Click Finish</li>
|
|
|
+ <li>Welcome to Organizr</li>
|
|
|
+</ol>
|
|
|
+
|
|
|
+<p>Documentation: <a href="https://hub.docker.com/r/organizr/organizr" target="_blank">https://hub.docker.com/r/organizr/organizr</a><br />
|
|
|
+Source: <a href="https://docs.organizr.app/installation/installing-organizr" target="_blank">https://docs.organizr.app/installation/installing-organizr</a></p> </div>
|
|
|
+ </div>
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+
|