Initial commit.

This commit is contained in:
Anna Rose Wiggins 2020-05-11 16:28:37 +00:00
commit 63539b5bc1
9 changed files with 401 additions and 0 deletions

13
docker-compose.yml Normal file
View file

@ -0,0 +1,13 @@
version: '3.5'
services:
app:
build: .
environment:
DEBUG: "true"
LISTEN_PORT: "7200"
WEBHOOK_CONFIG_FILE: "/config/webhooks.yml"
volumes:
- "./webhooks.yml.example:/config/webhooks.yml"
ports:
- "7200:7200"