Skip to content

Commit

Permalink
Update README and remove tools from Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Jan 11, 2024
1 parent 697fe43 commit 00ccb04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ FROM adoptopenjdk/openjdk13:debianslim-jre

# Install dependencies
RUN apt-get update \
&& apt-get install -y --no-install-recommends nmap ncrack ca-certificates dnsutils net-tools procps vi iproute2 \
&& apt-get install -y --no-install-recommends nmap ncrack ca-certificates \
&& apt-get clean \
&& mkdir logs/

Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,21 @@ To quickly get started with Tsunami scans,
1. build the docker image for Tsunami:
```
```shell
docker build -t tsunami .
```
1. run the Tsunami image. The logs can be saved to the host machine by mounting a volume:
1. run the Tsunami image. The logs can be saved to the host machine by mounting a volume:
```shell
docker run --network="host" -v "$(pwd)/logs":/usr/tsunami/logs tsunami
```
docker run --network="host" -v "$(pwd)/logs":/usr/tsunami/logs tsunami
1. installing debug tools in the Tsunami image.
```shell
docker exec -it tsunami bash -c "apt-get update && apt-get install -y dnsutils net-tools procps"
docker exec -it tsunami bach -c "ping hostname"
```
## Contributing
Expand Down

0 comments on commit 00ccb04

Please sign in to comment.