https://github.com/jgimeno/solr-nutch-orchestrator
Launch fast and easy an Apache Solr linked with Apache Nutch in separated docker containers.
https://github.com/jgimeno/solr-nutch-orchestrator
nutch orchestration solr
Last synced: 3 months ago
JSON representation
Launch fast and easy an Apache Solr linked with Apache Nutch in separated docker containers.
- Host: GitHub
- URL: https://github.com/jgimeno/solr-nutch-orchestrator
- Owner: jgimeno
- Created: 2015-12-03T15:45:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T21:10:08.000Z (almost 10 years ago)
- Last Synced: 2025-01-15T08:04:07.557Z (9 months ago)
- Topics: nutch, orchestration, solr
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# solr-nutch-orchestrator
Launch fast and easy an Apache Solr linked with Apache Nutch in separated docker containers.
## Usage
First we must configure the several options from nutch/conf and solr/conf.
Then we need to build the two images:
```
docker build -t solr solr/
docker build -t nutch nutch/
```### Launch Solr
```
docker run -d -p 8983:8983 --name solr solr
```### Launch nutch
```
docker run -i -t --name nutch --link solr nutch
```