0338.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running Heimdall Application Dashboard Using Docker</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Heimdall Application Dashboard,Home Lab Dashboard,Heimdall Dashboard,Heimdall Docker,Heimdall,Docker Made Easy,Home Lab,Install Guide,Application Dashboard,Docker,Containerize,Homelab,Self-Hosted,Browser Based,Web Based,Web Based Tools,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running Heimdall Application Dashboard Using Docker">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Running Heimdall Application Dashboard Using Docker</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Installing Docker</h2>
  25. <ol>
  26. <li>Log into the Linux Docker host and run the following commands in a terminal window
  27. <div class="codeBlock"># update software respositories<br />
  28. sudo apt update<br />
  29. # install available software updates<br />
  30. sudo apt upgrade -y<br />
  31. # install prerequisites<br />
  32. sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y<br />
  33. # add docker gpg key<br />
  34. curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -<br />
  35. # add docker apt repository<br />
  36. sudo apt-add-repository &quot;deb [arch=amd64] https://download.docker.com/linux/debian buster stable&quot;<br />
  37. # update software respositories again<br />
  38. sudo apt update<br />
  39. # install docker<br />
  40. sudo apt install docker-ce docker-ce-cli containerd.io -y<br />
  41. # add the current user to the docker group<br />
  42. sudo usermod -aG docker $USER<br />
  43. # reauthenticate for the new group membership to take effect<br />
  44. su - $USER</div>
  45. </li>
  46. </ol>
  47. <h2>Running Heimdall Application Dashboard</h2>
  48. <ol>
  49. <li>Continue with the following commands in a terminal window
  50. <div class="codeBlock"># list current uid and gid, note these for later<br />
  51. id $user<br />
  52. # make a heimdall directory to mount in the container<br />
  53. mkdir ~/heimdall<br />
  54. # run the heimdall docker image<br />
  55. # replace PUID, GUID with the output of the id $user command above<br />
  56. docker run \<br />
  57. --name=heimdall \<br />
  58. -e PUID=1001 \<br />
  59. -e PGID=1001 \<br />
  60. -e TZ=america/new_york \<br />
  61. -p 8006:80 \<br />
  62. -v ~/heimdall:/config \<br />
  63. --restart unless-stopped \<br />
  64. linuxserver/heimdall</div>
  65. </li>
  66. <li>Open a web browser and navigate to http://localhost:8006</li>
  67. <li>Open a file manager and navigate to ~/heimdall to see the files the container has created</li>
  68. </ol>
  69. <p>Source: <a href="https://hub.docker.com/r/linuxserver/heimdall/" target="_blank">https://hub.docker.com/r/linuxserver/heimdall/</a></p>
  70. </div>
  71. </div>
  72. </body>
  73. </html>