Back to Browse

Run Dashy Application Dashboard in Docker

1.1K views
Feb 3, 2025
1:45

#Dashy #Dashboard #Docker Full steps can be found at https://i12bretro.github.io/tutorials/0992.html -------------------------------------------------------------------- What is Dashy? -------------------------------------------------------------------- [Dashy is] a self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more! - https://github.com/Lissy93/dashy   -------------------------------------------------------------------- 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 Dashy --------------------------------------------------------------------    01. Continue with the following commands in a terminal window          # create working directories          mkdir ~/docker/dashy -p          # download default conf.yml          wget -O ~/docker/dashy/conf.yml https://raw.githubusercontent.com/Lissy93/dashy/refs/heads/master/user-data/conf.yml          # set owner of working directories          sudo chown "$USER":"$USER" ~/docker -R          # allow the container to write to working directories          sudo chmod a+rwx -R ~/docker/dashy          # run the dashy docker image          docker run -d --name dashy -p 8080:8080 -v ~/docker/dashy:/app/user-data --restart=unless-stopped lissy93/dashy:latest    02. Open a web browser and navigate to http://DNSorIP:8080    03. Welcome to Dashy   Source:  https://github.com/Lissy93/dashy?tab=readme-ov-file#getting-started-   ### Connect with me and others ### ★ Discord: https://discord.com/invite/EzenvmSHW8 ★ Reddit: https://reddit.com/r/i12bretro ★ Twitter: https://twitter.com/i12bretro

Download

0 formats

No download links available.

Run Dashy Application Dashboard in Docker | NatokHD