diff --git a/README.md b/README.md index 18cc3c7..63bc115 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ docker network create --driver bridge proxy - tinyfilemanager 8091 - jupytherlab 8888 - vaultwarden 8093 -- cyberchef +- cyberchef 8094 - https://it-tools.tech/ - https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose - cadvisor diff --git a/cyberchef/compose.yml b/cyberchef/compose.yml new file mode 100644 index 0000000..41863a8 --- /dev/null +++ b/cyberchef/compose.yml @@ -0,0 +1,20 @@ +# https://github.com/gchq/CyberChef +# https://cyberchef.org/ +# Cyber Swiss Army Knife +# CyberChef is a simple, intuitive web app for carrying out all manner of "cyber" operations within a web browser. These operations include simple encoding like XOR and Base64, more complex encryption like AES, DES and Blowfish, creating binary and hexdumps, compression and decompression of data, calculating hashes and checksums, IPv6 and X.509 parsing, changing character encodings, and much more + +name: cyberchef + +services: + cyberchef: + container_name: cyberchef + image: ghcr.io/gchq/cyberchef:latest + ports: + - 8094:80 + networks: + - proxy + +networks: + proxy: + external: true + \ No newline at end of file