Noms for Docker. Noms is a decentralized database based on ideas from Git.
2.0K
To serve Noms over HTTP:
docker run --name=noms -d -v /somewhere/blah:/data -p 8000:8000 scjalliance/noms
To run as a client:
# ask for the datasets at the server, as an example
docker run -it --rm --link noms:noms scjalliance/noms noms ds http://noms:8000/
# sync the ny-vehicle-registrations dataset from the cli-tour to your local noms
# (warning: this is a very large amount of data)
docker run -it --rm --link noms:noms scjalliance/noms noms sync http://demo.noms.io/cli-tour::ny-vehicle-registrations http://noms:8000::ny-vehicle-registrations
# or just run a shell, then run noms commands in there...
docker run -it --rm --link noms:noms scjalliance/noms /bin/bash
Content type
Image
Digest
Size
386.7 MB
Last updated
over 8 years ago
docker pull scjalliance/noms