Skip to content

Instantly share code, notes, and snippets.

@ShawInnes
Created May 5, 2020 11:39
Show Gist options
  • Save ShawInnes/ede9c5759f7911ef65b990f45fce2c48 to your computer and use it in GitHub Desktop.
Save ShawInnes/ede9c5759f7911ef65b990f45fce2c48 to your computer and use it in GitHub Desktop.
Run requestbin and ngrok for local webhook debugging
version: '3.3'
services:
ngrok:
image: wernight/ngrok
ports:
- '4040:4040'
links:
- httpbin
command: ngrok http httpbin:80
httpbin:
container_name: httpbin
image: kennethreitz/httpbin
ports:
- '8000:80'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment