You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README for instructions for v.10.0 & detail history (#251)
DockerHub now contains every major release from `v1.0.1` to `1.10.0`
Waiting for this README PR to approve before I remove the `v1.9.0` DockerHub tag as it no longer conforms with standards.
Co-authored-by: Bee <[email protected]>
@@ -130,22 +130,22 @@ To install Docker, [follow their guide](https://docs.docker.com/engine/install/)
130
130
131
131
**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)**
132
132
133
-
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.9.0](https://github.com/RustScan/RustScan/releases/tag/1.9.0)
133
+
Please see our [DockerHub](https://hub.docker.com/repository/docker/rustscan/rustscan) for further our published versions. However, we recommend using our latest **major**release [1.10.0](https://github.com/RustScan/RustScan/releases/tag/1.10.0)
134
134
135
135
```
136
-
Stable and supported: rustscan/rustscan:v1.9.0
136
+
Stable and supported: rustscan/rustscan:1.10.0
137
137
138
138
Bleeding edge (run at your own risk!): rustscan/rustscan:latest
139
139
```
140
140
141
-
We strongly recommend using the `v1.9.0` tag, as this is the latest major - stable - release of RustScan. This README uses the `v1.9.0` image by default, however, note that the `latest` image is considered experimental.
141
+
We strongly recommend using the `1.10.0` tag, as this is the latest major - stable - release of RustScan. This README uses the `1.10.0` image by default, however, note that the `latest` image is considered experimental. You can use all releases of Docker by visiting the [DockerHub Tags](https://hub.docker.com/r/rustscan/rustscan/tags) and replacing the command with the tag you desire. i.e. `docker pull rustscan/rustscan:1.10.0` can be `docker pull rustscan/rustscan:1.6.0`
142
142
143
143
#### To get started:
144
144
145
145
Simply run this command against the IP you want to target:
146
146
147
147
```bash
148
-
docker run -it --rm --name rustscan rustscan/rustscan:v1.9.0 <rustscan arguments here><ip address to scan>
148
+
docker run -it --rm --name rustscan rustscan/rustscan:1.10.0 <rustscan arguments here><ip address to scan>
149
149
```
150
150
151
151
Note: this will scan the Docker's localhost, not your own.
@@ -155,7 +155,7 @@ Once done, you will no longer need to re-download the image (except when RustSca
155
155
You will have to run this command every time, so we suggest aliasing it to something memorable.
156
156
157
157
```bash
158
-
alias rustscan='docker run -it --rm --name rustscan rustscan/rustscan:v1.9.0'
158
+
alias rustscan='docker run -it --rm --name rustscan rustscan/rustscan:1.10.0'
0 commit comments