An open API service indexing awesome lists of open source software.

https://github.com/milesrack/simple-dashboard

A docker container that runs a simple Node.js app showing the hostname, IP address, and uptime.
https://github.com/milesrack/simple-dashboard

dashboard docker ejs javascript node-js node-js-express nodejs

Last synced: 12 months ago
JSON representation

A docker container that runs a simple Node.js app showing the hostname, IP address, and uptime.

Awesome Lists containing this project

README

          

# Simple Dashboard
A docker container that runs a simple Node.js app showing the hostname, IP address, and uptime.

## Installation
```
git clone https://github.com/milesrack/simple-dashboard
cd simple-dashboard
```

## Usage
First build the docker image:
```
docker build -t simple-dashboard:latest .
```

After building the image run it in a container:
```
docker run -p 3000:3000 -d simple-dashboard:latest
```

Now the app will be running at http://localhost:3000

## Screenshot
![screenshot](screenshot.png)