1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Run DashMachine Application Dashboard in Docker on Debian</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="DashMachine,Application Dashboard,Web Based Tools,Docker,Linux,Debian,Heimdall Alternative,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Run DashMachine Application Dashboard in Docker on Debian">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="10/26/2022 12:38:25 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Run DashMachine Application Dashboard in Docker on Debian</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Installing Docker</h2>
- <ol>
- <li>Log into the Linux Docker host and run the following commands in a terminal window
- <div class="codeBlock"># update software respositories<br />
- sudo apt update<br />
- # install available software updates<br />
- sudo apt upgrade -y<br />
- # install prerequisites<br />
- sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y<br />
- # add docker gpg key<br />
- curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -<br />
- # add docker apt repository<br />
- sudo apt-add-repository "deb [arch=amd64] https://download.docker.com/linux/debian buster stable"<br />
- # update software respositories again<br />
- sudo apt update<br />
- # install docker<br />
- sudo apt install docker-ce docker-ce-cli containerd.io -y<br />
- # add the current user to the docker group<br />
- sudo usermod -aG docker $USER<br />
- # reauthenticate for the new group membership to take effect<br />
- su - $USER</div>
- </li>
- </ol>
- <h2>Running DashMachine Application Dashboard</h2>
- <ol>
- <li>Continue with the following commands in a terminal window
- <div class="codeBlock"># make a working directory<br />
- mkdir ~/docker/dashmachine -p<br />
- # run the dashmachine docker image<br />
- docker run --name=dashmachine -p 5000:5000 -v ~/docker/dashmachine:/dashmachine/dashmachine/user_data --restart unless-stopped rmountjoy/dashmachine:latest</div>
- </li>
- <li>Open a web browser and navigate to http://localhost:5000</li>
- <li>Log in with the username admin and password admin</li>
- <li>Welcome to DashMachine running inside a Docker container</li>
- </ol>
- <p>Source: <a href="https://hub.docker.com/r/rmountjoy/dashmachine" target="_blank">https://hub.docker.com/r/rmountjoy/dashmachine</a></p> </div>
- </div>
- </body>
- </html>
-
|