archive
/
todoist-github
Archived
1
Fork 0

Add example docker-compose file to readme

This commit is contained in:
Jake Howard 2020-01-21 19:27:48 +00:00
parent 4e3952f69d
commit e60ed8eeb9
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 15 additions and 0 deletions

View File

@ -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=
```