A quick-start container for the Neon Framework that includes everything needed to run.
346
Use this container to try Neon (http://neonframework.org) without any other requirements. This container includes MongoDB and Elasticsearch, and both databases have example data loaded. Start with
docker run -p 8080:8080 nextcentury/neon-quickstart
Then point your browser to http://localhost:8080/neon-gtd/app/
If you want to load your own data into the included Elasticsearch (port 9200) or MongoDB (port 27017), you'll need to expose the relevant port. To expose both ports, use this command:
docker run -p 8080:8080 -p 9200:9200 -p 27017:27017 nextcentury/neon-quickstart
Finally, if you want to create your own dashboard configuration, you can put them in a directory and mount that directory use the -v option in docker:
docker run -p 8080:8080 -v /path/to/config-directory/:/usr/local/tomcat/webapps/neon-gtd/app/app/config/ nextcentury/neon-quickstart
Content type
Image
Digest
Size
1.4 GB
Last updated
over 9 years ago
docker pull nextcentury/neon-quickstart