Running Heimdall Application Dashboard Using Docker

Channel:
Subscribers:
14,400
Published on ● Video Link: https://www.youtube.com/watch?v=OJUQZmvOxFg



Duration: 1:48
1,088 views
8


#Heimdall #Dashboard #Docker

Full steps can be found at https://i12bretro.github.io/tutorials/0338.html

--------------------------------------------------------------------
Installing Docker
--------------------------------------------------------------------
   01. Log into the Linux Docker host and run the following commands in a terminal window
         # install prerequisites
         sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg-agent -y
         # add docker gpg key
         curl -fsSL https://download.docker.com/linux/$(awk -F'=' '/^ID=/{ print $NF }' /etc/os-release)/gpg | sudo apt-key add -
         # add docker software repository
         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"
         # install docker
         sudo apt install docker-ce docker-compose containerd.io -y
         # enable and start docker service
         sudo systemctl enable docker && sudo systemctl start docker
         # add the current user to the docker group
         sudo usermod -aG docker $USER
         # reauthenticate for the new group membership to take effect
         su - $USER
 
--------------------------------------------------------------------
Running Heimdall Application Dashboard
--------------------------------------------------------------------
   01. Continue with the following commands in a terminal window
         # list current uid and gid, note these for later
         id $user
         # make a heimdall directory to mount in the container
         mkdir ~/heimdall
         # run the heimdall docker image
         # replace PUID, GUID with the output of the id $user command above
         docker run --name=heimdall -e PUID=1001 -e PGID=1001 -e TZ=america/new_york -p 8006:80 -v ~/heimdall:/config --restart unless-stopped linuxserver/heimdall
   02. Open a web browser and navigate to http://localhost:8006
   03. Open a file manager and navigate to ~/heimdall to see the files the container has created
 
Source:  https://hub.docker.com/r/linuxserver/heimdall/
 


### Connect with me and others ###
★ Discord: https://discord.com/invite/EzenvmSHW8
★ Reddit: https://reddit.com/r/i12bretro
★ Twitter: https://twitter.com/i12bretro







Tags:
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