Updated docker commands in README.md with new port number used by nginx-unprivileged

This commit is contained in:
Henrik Solberg 2024-10-28 14:40:23 +01:00 committed by GCHQDeveloper581
parent 9272798f95
commit 378d53596a
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -36,7 +36,7 @@ docker build --tag cyberchef --ulimit nofile=10000 .
```
2. Run the docker container
```bash
docker run -it -p 8080:80 cyberchef
docker run -it -p 8080:8080 cyberchef
```
3. Navigate to `http://localhost:8080` in your browser
@ -45,7 +45,7 @@ docker run -it -p 8080:80 cyberchef
If you prefer to skip the build process, you can use the pre-built image
```bash
docker run -it -p 8080:80 ghcr.io/gchq/cyberchef:latest
docker run -it -p 8080:8080 ghcr.io/gchq/cyberchef:latest
```
Just like before, navigate to `http://localhost:8080` in your browser.