Files
container.training/webhooks/admission/docker-compose.yml
2023-05-25 16:09:47 +02:00

33 lines
565 B
YAML

version: "3"
services:
ngrok-echo:
image: ngrok/ngrok
command: http --log=stdout localhost:3000
ports:
- 3000
echo:
network_mode: service:ngrok-echo
image: node
command: npx http-echo-server
ngrok-flask:
image: ngrok/ngrok
command: http --log=stdout localhost:5000
ports:
- 5000
flask:
network_mode: service:ngrok-flask
build: flask
volumes:
- ./flask:/src
working_dir: /src
environment:
FLASK_APP: webhook.py
FLASK_ENV: development
command: flask run --host=0.0.0.0