Skip to content

Commit b43cb6b

Browse files
committed
d - Remove leading $ to make copy-paste easier
1 parent 691e9da commit b43cb6b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ Luminaut is a framework that assembles tools and APIs commonly used to understan
4141
The docker image is available on GitHub, you can pull it locally by running:
4242

4343
```bash
44-
$ docker pull ghcr.io/luminaut-org/luminaut
44+
docker pull ghcr.io/luminaut-org/luminaut
4545
```
4646

4747
If you would like to run it locally with just the name `luminaut`, you can then run:
4848

4949
```bash
50-
$ docker tag ghcr.io/luminaut-org/luminaut luminaut:latest
50+
docker tag ghcr.io/luminaut-org/luminaut luminaut:latest
5151
```
5252

5353
For development, clone the repository and run `docker build --tag luminaut:latest` to build the container.
@@ -93,13 +93,13 @@ options:
9393
By default, Luminaut will run all available tools. It requires your AWS profile to be configured with the necessary permissions, otherwise the first step of public IP detection on ENIs will fail.
9494

9595
```bash
96-
$ luminaut
96+
luminaut
9797
```
9898

9999
The AWS Config scanner takes at least 50 seconds to run per resource type. If you would like to disable this, you can do so as shown in the provided `configs/disable_aws_config.toml` configuration file. You can provide this configuration with `-c configs/disable_aws_config.toml`.
100100

101101
```bash
102-
$ luminaut -c configs/disable_aws_config.toml
102+
luminaut -c configs/disable_aws_config.toml
103103
```
104104

105105
Similarly, if you'd like to enable Shodan, you will need to specify a configuration file that includes the Shodan API key. See the [Configuration](#configuration) section for more information on the configuration file specification.
@@ -110,12 +110,12 @@ You may run luminaut with docker by mounting the configuration file and running
110110

111111
Bash, zsh, and similar terminals:
112112
```bash
113-
$ docker run -it -v ~/.aws:/home/app/.aws -v $(pwd)/configs:/app/configs luminaut --help
113+
docker run -it -v ~/.aws:/home/app/.aws -v $(pwd)/configs:/app/configs luminaut --help
114114
```
115115

116116
Powershell:
117117
```powershell
118-
$ docker run -it -v $env:USERPROFILE\.aws:/home/app/.aws -v ${PWD}\configs:/app/configs luminaut --help
118+
docker run -it -v $env:USERPROFILE\.aws:/home/app/.aws -v ${PWD}\configs:/app/configs luminaut --help
119119
```
120120

121121
## Configuration

0 commit comments

Comments
 (0)