-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed based on creation of dockerized version
- Loading branch information
Showing
6 changed files
with
88 additions
and
44 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
The official Nodepot dockerhub image is build as follows | ||
|
||
docker build --no-cache -t="nodepotimg" . | ||
|
||
docker run -name nodepot_ins -p 8889:8888 -t -i nodepotimg /bin/bash | ||
|
||
docker run -name nodepot_ins -d -p 8889:8888 nodepotimg /opt/Nodepot/docker/nodepotstart.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# start redis db and the nodepot honeypot | ||
# | ||
|
||
/usr/bin/redis-server & | ||
cd /opt/Nodepot | ||
nodejs app.js | ||
|