15 lines
294 B
YAML
15 lines
294 B
YAML
version: '3'
|
|
|
|
services:
|
|
webhook:
|
|
build: .
|
|
ports:
|
|
- "8002:8002"
|
|
environment:
|
|
HOST: "0.0.0.0"
|
|
PORT: 8002
|
|
VERBOSE: true
|
|
HOOKS: /etc/webhook/config/hooks.yaml
|
|
volumes:
|
|
- ./config:/etc/webhook/config:rw
|
|
- ./scripts:/etc/webhook/scripts:rw
|