Skip to content

Commit

Permalink
Add a comment to the README about using Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
AshCorr committed Feb 12, 2024
1 parent d700d1d commit 314b925
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ Cryptographic operations in CyberChef should not be relied upon to provide secur

[A live demo can be found here][1] - have fun!

## Containers

If you would like to try out CyberChef locally you can either build it yourself:

```bash
docker build --tag cyberchef --ulimit nofile=10000 .
docker run -it -p 8080:80 cyberchef
```

Or you can use our image directly:

```bash
docker run -it -p 8080:80 ghcr.io/gchq/cyberchef:latest
```

This image is built and published through our [GitHub Workflows](.github/workflows/docker.yml)

## How it works

Expand Down

0 comments on commit 314b925

Please sign in to comment.