1. Information

  • Enter the following commands at a Command Line.

    docker run -p 8080:8080 lissy93/dashy
    
    docker run -d \
      -p 4000:8080 \
      -v /root/my-local-conf.yml:/app/user-data/conf.yml \
      --name my-dashboard \
      --restart=always \
      lissy93/dashy:latest
  • Browse to Dashy.

2. Required

3. Source Installation

  • See https://github.com/Lissy93/dashy/tree/master.

  • Enter the following commands at a Command Line.

    cd ~/github
    git clone https://github.com/Lissy93/dashy.git
    cd dashy
    
    # Prevent following error.
    # error dashy@3.1.1: The engine "node" is incompatible with this module.
    # Expected version ">=16.0.0 <21.6.2". Got "24.13.1"
    nvm list
    nvm install 21.5
    nvm use 21.5
    
    npm install --global yarn
    yarn --version                  # 1.22.22
    
    # Prevent following error.
    # #/bin/sh: 1: vue-cli-service: not found
    # error Command failed with exit code 127.
    npm install @vue/cli@latest
    
    yarn build
    yarn start
  • Browse to http://127.0.0.1:4000.