Last active
February 20, 2023 04:11
-
-
Save imran-vz/d04a7cc985804251b59f7554c62aff04 to your computer and use it in GitHub Desktop.
Use cyberchef with docker compose. You can access it on http://cyberchef.localhost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
proxy: | |
image: traefik:v2.9 | |
command: | |
- --api.insecure=true | |
- --providers.docker | |
ports: | |
- "80:80" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
cyberchef: | |
image: mpepping/cyberchef:latest | |
restart: always | |
labels: | |
- "traefik.http.routers.cyberchef.rule=Host(cyberchef.localhost)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment