diff --git a/README.md b/README.md index ec0f467b4..10841f7ef 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ |

🐋 Docker (Recommended)

|

👩‍💻 Kali / Debian

|

🏗️ Arch

|

🔧 Cargo (Universal)

| | ----------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------- | |

|

|

|

| -| `docker pull rustscan/rustscan:alpine`

[Usage](https://github.com/RustScan/RustScan#docker-whale) | [Read the install guide](https://github.com/Rustscan/RustScan/blob/master/README.md#%EF%B8%8F-debian--kali) | `yay -S rustscan` | `cargo install rustscan` | +| `docker pull rustscan/rustscan:v1.8.0`

[Usage](https://github.com/RustScan/RustScan#docker-whale) | [Read the install guide](https://github.com/Rustscan/RustScan/blob/master/README.md#%EF%B8%8F-debian--kali) | `yay -S rustscan` | `cargo install rustscan` |


@@ -130,22 +130,22 @@ To install Docker, [follow their guide](https://docs.docker.com/engine/install/) **Once Docker is installed, you can either build your own image using the `Dockerfile` (alpine) provided in the repo, or alternatively, use the published Docker image like below (most convenient)** -Please see our [DockerHub](https://hub.docker.com/repository/docker/rustscan/rustscan) for further info, however, note that we have two Docker images: +Please see our [DockerHub](https://hub.docker.com/repository/docker/rustscan/rustscan) for further our published versions. However, we recommend using our latest release [v1.8.0](https://github.com/RustScan/RustScan/releases/tag/1.8.0) ``` -rustscan/rustscan:alpine +Stable and supported: rustscan/rustscan:v1.8.0 -rustscan/rustscan:latest +Bleeding edge (run at your own risk!): rustscan/rustscan:latest ``` -We strongly recommend using the `alpine` tag, as this is the latest major - stable - release of RustScan. This READMDE uses the `alpine` image by default, however, note that the`latest` image is considered experimental. +We strongly recommend using the `v1.8.0` tag, as this is the latest major - stable - release of RustScan. This README uses the `v1.8.0` image by default, however, note that the `latest` image is considered experimental. #### To get started: Simply run this command against the IP you want to target: ```bash -docker run -it --rm --name rustscan rustscan/rustscan:alpine +docker run -it --rm --name rustscan rustscan/rustscan:v1.8.0 ``` Note: this will scan the Docker's localhost, not your own. @@ -155,13 +155,13 @@ Once done, you will no longer need to re-download the image (except when RustSca You will have to run this command every time, so we suggest aliasing it to something memorable. ```bash -alias rustscan='docker run -it --rm --name rustscan rustscan/rustscan:alpine' +alias rustscan='docker run -it --rm --name rustscan rustscan/rustscan:v1.8.0' ``` -Then we can: +Then we can scan: ```bash -rustscan 127.0.0.1 -t 500 -b 1500 -- -A +rustscan 192.168.1.0/24 -t 500 -b 1500 -- -A ``` #### To build your own image: