/dash-docker

A simple way to get set up with dash using Docker

Primary LanguagePythonMIT LicenseMIT

docker-dash

An easy way to get started with dash using Docker.

Usage

Start a dash server with the getting started example

docker run --rm -it --net=host michaelerasmus/dash

To start with your own app, create a app.py and mount the current directory

docker run --rm -it --net=host -v "$PWD":/usr/src/myapp michaelerasmus/dash

Building the image locally:

git clone https://github.com/michael-erasmus/dash-docker
cd dash-docker
docker build -t michaelerasmus/dash .

Using a custom Dockerfile:

FROM michaelerasmus/dash

#Customize things here