Running Homepage Application Dashboard Using Docker

Channel:
Subscribers:
14,500
Published on ● Video Link: https://www.youtube.com/watch?v=BzjL3tZ-NQs



Duration: 1:43
823 views
20


#Homepage #Dashboard #Docker

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

--------------------------------------------------------------------
What is Homepage?
--------------------------------------------------------------------
[Homepage is] a modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery. - https://github.com/benphelps/homepage
 
--------------------------------------------------------------------
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 Homepage 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 homepage directory to mount in the container
         mkdir ~/homepage -p
         run the homepage docker image
         replace PUID, GUID with the output of the id $user command above
         docker run -d --name=homepage -e PUID=1000 -e PGID=1000 -p 8006:3000 -v ~/homepage:/app/config -v /var/run/docker.sock:/var/run/docker.sock --restart unless-stopped ghcr.io/benphelps/homepage
   02. Open a web browser and navigate to http://DNSorIP:8006
 
Source:  https://gethomepage.dev/en/installati...
 


Connect with me and others ###
★ Discord:   / discord  
★ Reddit:   / i12bretro  
★ Twitter:   / i12bretro  







Tags:
Application Dashboard
Browser Based
Docker
Docker Container
Docker How To
Docker Made Easy
Docker Simplified
Docker Tutorial
Home Lab
Home Lab Ideas
Homelab
Homelab Dashboard
Homepage
Homepage Application Dashboard
How To
Install Guide
Linux
NodeJS
Self-Hosted
Tutorial
Ubuntu
Web Based
Web Based Tools
i12bretro