26 lines
507 B
YAML
26 lines
507 B
YAML
version: '3'
|
|
|
|
secrets:
|
|
instance_control_webhooks_secret:
|
|
file: ./instance-control-webhooks/webhook_secret
|
|
|
|
services:
|
|
node_webhooks:
|
|
image: almir/webhook
|
|
volumes:
|
|
- ./instance-control-webhooks/hooks/:/etc/webhook
|
|
- /tmp/restic:/tmp/restic
|
|
secrets:
|
|
- instance_control_webhooks_secret
|
|
command:
|
|
- -template
|
|
- "-hooks=/etc/webhook/hooks.yaml"
|
|
- -verbose
|
|
networks:
|
|
- lb
|
|
restart: unless-stopped
|
|
ports:
|
|
- 9000:9000
|
|
networks:
|
|
lb:
|