Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
supervisor:
image: storm:latest
container_name: supervisor
command: storm supervisor -c worker.childopts=-Xmx%HEAP-MEM%m
command: storm supervisor -c worker.childopts=-Xmx%HEAP-MEM%m -c storm.local.hostname=localhost
depends_on:
- nimbus
- zookeeper
Expand All @@ -46,6 +46,16 @@ services:
ports:
- "127.0.0.1:8080:8080"

logviewer:
image: storm:latest
container_name: logviewer
command: storm logviewer
depends_on:
- supervisor
restart: always
ports:
- "127.0.0.1:8000:8000"

urlfrontier:
image: crawlercommons/url-frontier:latest
container_name: urlfrontier
Expand Down
12 changes: 11 additions & 1 deletion docs/src/main/asciidoc/quick-start.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ services:
supervisor:
image: storm:latest
container_name: supervisor
command: storm supervisor -c worker.childopts=-Xmx2g
command: storm supervisor -c worker.childopts=-Xmx2g -c storm.local.hostname=localhost
depends_on:
- nimbus
- zookeeper
Expand All @@ -117,6 +117,16 @@ services:
ports:
- "127.0.0.1:8080:8080"

logviewer:
image: storm:latest
container_name: logviewer
command: storm logviewer
depends_on:
- supervisor
restart: always
ports:
- "127.0.0.1:8000:8000"

urlfrontier:
image: crawlercommons/url-frontier:latest
container_name: urlfrontier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
supervisor:
image: storm:latest
container_name: supervisor
command: storm supervisor -c worker.childopts=-Xmx%HEAP-MEM%m
command: storm supervisor -c worker.childopts=-Xmx%HEAP-MEM%m -c storm.local.hostname=localhost
depends_on:
- nimbus
- zookeeper
Expand All @@ -46,6 +46,16 @@ services:
ports:
- "127.0.0.1:8080:8080"

logviewer:
image: storm:latest
container_name: logviewer
command: storm logviewer
depends_on:
- supervisor
restart: always
ports:
- "127.0.0.1:8000:8000"

opensearch-sc:
image: opensearchproject/opensearch:2.19.4
container_name: opensearch-sc
Expand Down
Loading