View on GitHub

dash-app

The GreatFull Plate Internship Projects . Dashboards include visualizations and written analysis, all used to create a final report about insurance data.

Download this project as a .zip file Download this project as a tar.gz file

Home | Data Cleaning | Report | R Analysis | Conclusions | Docker | MySQL | Jupyter Notebook | Troubleshooting | About | Works Cited

Using Docker

View the Dockerfile: here

Download with wget:

wget https://raw.githubusercontent.com/arcelioeperez/dash-app/gh-pages/Dockerfile

Installing Docker

MacOS

brew cask install docker

GNU-Linux (Depending on the package manager)

sudo apt install docker-ce

Windows
Download from the official Docker website.

Build the Docker Image

sudo docker build /path/to/the/dockerfile -t dash-app

Run the image

sudo docker run -p 8080:80 dash-app

Open localhost at http://localhost:8080/. Or any other host that you defined in your app.

More information: Docker.com