Run Dashing (dashing.io) in a Docker container.
526
Run Dashing in a Docker container.
Link: georgeyord/dashing
docker run -d -p 3030:3030 georgeyord/dashing
And point your browser to http://localhost:3030/.
mkdir -p data
docker run -d -p 3030:3030 -v `pwd`/data:/dashing georgeyord/dashing
docker run -d -p 3030:3030 -v [PATH TO EXISTING DASHING APPLICATION]:/dashing georgeyord/dashing
To install custom widgets supply the gist IDs of the widgets as an environment variable:
docker run -d -e WIDGETS=5641535 -p 3030:3030 georgeyord/dashing
This example will install the Random Aww widget before starting dashing. Multiple widgets can be supplied.
To install gems, supply the gem name(s) as an environment variable:
docker run -d -e GEMS="instagram" -e WIDGETS=5278790 -p 3030:3030 georgeyord/dashing
This example installs the Instagram photos by location widget, which depends on the instagram gem.
Multiple gems and widgets can be supplied like so:
###Public (favicon, 404) To provide custom 404 and favicon, use [DASHING APPLICATION]/public folder.
The configuration file config.ru is available on [DASHING APPLICATION] folder.
Edit this file to change your API key, to add authentication and more.
and all the references he uses:
Content type
Image
Digest
sha256:7f8107210…
Size
372.7 MB
Last updated
over 5 years ago
docker pull georgeyord/dashing