{"id":16162451,"url":"https://github.com/sunsided/storm-docker","last_synced_at":"2026-04-16T04:02:17.120Z","repository":{"id":141993000,"uuid":"51583220","full_name":"sunsided/storm-docker","owner":"sunsided","description":"Apache Storm docker image","archived":false,"fork":false,"pushed_at":"2016-09-08T12:02:20.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-30T08:51:51.410Z","etag":null,"topics":["apache-storm","docker","docker-compose","nimbus"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/sunside/storm/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunsided.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-12T11:22:40.000Z","updated_at":"2020-11-25T09:08:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"650a48bf-5941-4a89-a8a2-46c774fafa78","html_url":"https://github.com/sunsided/storm-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sunsided/storm-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunsided%2Fstorm-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunsided%2Fstorm-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunsided%2Fstorm-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunsided%2Fstorm-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunsided","download_url":"https://codeload.github.com/sunsided/storm-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunsided%2Fstorm-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31870516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-storm","docker","docker-compose","nimbus"],"created_at":"2024-10-10T02:30:14.102Z","updated_at":"2026-04-16T04:02:17.072Z","avatar_url":"https://github.com/sunsided.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# storm-docker\n\n[![](https://images.microbadger.com/badges/version/sunside/storm.svg)](http://microbadger.com/images/sunside/storm \"Get your own version badge on microbadger.com\") [![](https://images.microbadger.com/badges/image/sunside/storm.svg)](http://microbadger.com/images/sunside/storm \"Get your own image badge on microbadger.com\")\n\nDockerfiles for building a storm cluster. Inspired by [https://github.com/ptgoetz/storm-vagrant](https://github.com/ptgoetz/storm-vagrant) and [https://github.com/wurstmeister/storm-docker](https://github.com/wurstmeister/storm-docker).\n\n## Pre-Requisites\n\n- install docker-compose [http://docs.docker.com/compose/install/](http://docs.docker.com/compose/install/)\n\n## Usage\n\nStart a cluster:\n\n- ```docker-compose up```\n\nDestroy a cluster:\n\n- ```docker-compose stop```\n\nAdd more supervisors:\n\n- ```docker-compose scale supervisor=3```\n\n## Building\n\n- ```rebuild.sh```\n\n## Running a supervisor\n\nHere, `SUPERVISOR_ADDRESS` is the address of the supervisor's host.\n\n```bash\ndocker run -d --restart=unless-stopped \\\n        --name storm-supervisor \\\n        -p 8000:8000 \\\n        -e \"NIMBUS_ADDRESS=10.3.2.110\" \\\n        -e \"NIMBUS_DRPC_PORT=49772\" \\\n        -e \"NIMBUS_DRPCI_PORT=49773\" \\\n        -e \"ZOOKEEPER_ADDRESS=10.3.2.110\" \\\n        -e \"ZOOKEEPER_PORT=49181\" \\\n        -e \"SUPERVISOR_ADDRESS=10.3.2.120\" \\\n        sunside/storm-supervisor:0.10.0\n```\n\n## FAQ\n### How can I access Storm UI from my host?\nTake a look at docker-compose.yml:\n\n    ui:\n      image: sunside/storm-ui:0.10.0\n\t      ports:\n\t        - \"49080:8080\"\n\nThis tells Docker to expose the Docker UI container's port 8080 as port 49080 on the host\u003cbr/\u003e\n\nIf you are running docker natively you can use localhost. If you're using boot2docker, then do:\n\n    $ boot2docker ip\n    The VM's Host only interface IP address is: 192.168.59.103\n\nWhich returns your docker VM's IP.\u003cbr/\u003e\nSo, to open storm UI, type the following in your browser:\n\n    localhost:49080\n\nor\n\n    192.168.59.103:49080\n\nin my case.\n\n### How can I deploy a topology?\nSince the nimbus host and port are not default, you need to specify where the nimbus host is, and what is the nimbus port number.\u003cbr/\u003e\nFollowing the example above, after discovering the nimbus host IP (could be localhost, could be our docker VM ip as in the case of boot2docker), run the following command:\n\n    storm jar target/your-topology-fat-jar.jar com.your.package.AndTopology topology-name -c nimbus.host=192.168.59.103 -c nimbus.thrift.port=49627\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunsided%2Fstorm-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunsided%2Fstorm-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunsided%2Fstorm-docker/lists"}