mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-16 21:38:56 +00:00
20 lines
473 B
YAML
20 lines
473 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
|
|
webhookd:
|
|
hostname: webhookd
|
|
image: ncarlier/webhookd:latest
|
|
container_name: webhookd
|
|
restart: always
|
|
networks:
|
|
- default
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- APP_SCRIPTS_DIR=/scripts
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ~/docker/webhookd/scripts:/scripts
|
|
- ~/docker/webhookd/logs:/tmp
|