From e60ed8eeb9043d34e5a6523aa999872afad60e77 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 21 Jan 2020 19:27:48 +0000 Subject: [PATCH] Add example docker-compose file to readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 031b7dc..aedc106 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,18 @@ Tasks are added to projects based on the repository organisation / owner or repo Task due dates are based off their milestone. Once an issue is closed / PR merged, the task is completed. If you're unassigned, the issue is deleted. + +## Example `docker-compose.yml` + +```yml +version: '3' +services: + todoist-github: + image: theorangeone/todoist-github:latest + container_name: todoist-github + restart: unless-stopped + command: python3 -m todoist_github --interval 900 + environment: + - TODOIST_TOKEN= + - GITHUB_TOKEN= +```