Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit 7a869a4

Browse files
committed
Build 246 - Changed dockerfile from entrypoint to cmd.
Updated readme to include docker build and docker pull options Added vim
1 parent 4e11f17 commit 7a869a4

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ RUN git clone https://github.com/sethsec/celerystalk.git && \
1212
cd setup && \
1313
./install.sh
1414

15-
ENTRYPOINT ["/bin/bash"]
15+
CMD ["bash"]

README.md

+17-10
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,29 @@ celerystalk is:
4242
**You must install and run celerystalk as root**
4343

4444
```
45-
# git clone https://github.com/sethsec/celerystalk.git
46-
# cd celerystalk/setup
47-
# ./install.sh
48-
# cd ..
49-
# ./celerystalk -h
45+
git clone https://github.com/sethsec/celerystalk.git
46+
cd celerystalk/setup
47+
./install.sh
48+
cd ..
49+
./celerystalk -h
5050
```
5151

52-
## Docker Build
52+
## Use docker container from Dockerhub
53+
5354
```
55+
docker pull sethsec/celerystalk:latest
56+
docker run -p 27007:27007 -ti celerystalk
57+
```
58+
5459

55-
# git clone https://github.com/sethsec/celerystalk.git
56-
# cd celerystalk
57-
# docker build -t celerystalk .
58-
docker build -t celerystalk .
60+
## Docker Build
61+
```
62+
docker build -t celerystalk https://github.com/sethsec/celerystalk.git
63+
docker run -p 27007:27007 -ti celerystalk
5964
```
6065

66+
67+
6168
## Using celerystalk - The basics
6269

6370

celerystalk

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ import csv
9090

9191
from lib.nmap import nmapcommand
9292

93-
build=str(245)
93+
build=str(246)
9494

9595

9696
def print_banner():

0 commit comments

Comments
 (0)