Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 297 Bytes

deployment-docker.md

File metadata and controls

18 lines (11 loc) · 297 Bytes

Deployment on Docker

Dashbling dashboards ship with a Dockerfile.

  1. Build a Docker image:

    docker build -t my-dashboard .
  2. And run it:

    docker run -p 3000:3000 -it my-dashboard 

Now open http://localhost:3000/ in your browser to see your dashboard.