Skip to content

Instantly share code, notes, and snippets.

@imran-vz
Last active February 20, 2023 04:11
Show Gist options
  • Save imran-vz/d04a7cc985804251b59f7554c62aff04 to your computer and use it in GitHub Desktop.
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
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