Created
May 5, 2020 11:39
-
-
Save ShawInnes/ede9c5759f7911ef65b990f45fce2c48 to your computer and use it in GitHub Desktop.
Run requestbin and ngrok for local webhook debugging
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
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