Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove '$' from places where someone might copy command blocks #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ An easy to set up and use SSH honeypot, a fake SSH server that lets anyone in an
### From source

```
$ git clone https://github.com/jaksi/sshesame.git
$ cd sshesame
$ go build
git clone https://github.com/jaksi/sshesame.git
cd sshesame
go build
```

### GitHub releases
Expand Down Expand Up @@ -57,11 +57,11 @@ Images for amd64, arm64 and armv7 are built and published automatically and are
#### CLI

```
$ docker run -it --rm\
-p 127.0.0.1:2022:2022\
-v sshesame-data:/data\
[-v $PWD/sshesame.yaml:/config.yaml]\
ghcr.io/jaksi/sshesame
docker run -it --rm\
-p 127.0.0.1:2022:2022\
-v sshesame-data:/data\
[-v $PWD/sshesame.yaml:/config.yaml]\
ghcr.io/jaksi/sshesame
```

#### Dockerfile
Expand Down