Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 1.19 KB

File metadata and controls

28 lines (23 loc) · 1.19 KB

Running Modified Version

$ docker run -d --name elasticsearch blacktop/elasticsearch:5.6
$ docker run -d --name postgres -e POSTGRES_PASSWORD=cuckoo postgres
# Start cuckoo API
$ docker run -d --name cuckoo-api \
				--link postgres \
				-p 8000:1337 \
				blacktop/cuckoo:modified api
# Start cuckoo web UI				
$ docker run -d --name cuckoo-web \
				--link elasticsearch \
				-p 80:31337 \
				blacktop/cuckoo:modified web

NOTE: If you want to customize the cuckoo configuration before launching you can link the conf folder into the container like so: docker run -d -v $(pwd)/conf:/cuckoo/conf blacktop/cuckoo web

Now Navigate To

cuckoo-submit
cuckoo-dashboard