{"id":38303647,"url":"https://github.com/rucas/taskd","last_synced_at":"2026-01-17T02:25:34.289Z","repository":{"id":43019637,"uuid":"114829827","full_name":"rucas/taskd","owner":"rucas","description":"taskwarrior docker container","archived":false,"fork":false,"pushed_at":"2018-07-11T23:46:46.000Z","size":12,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-21T03:42:48.653Z","etag":null,"topics":["cli","container","docker","task","taskwarrior"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rucas.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-20T01:46:54.000Z","updated_at":"2023-03-10T11:09:44.000Z","dependencies_parsed_at":"2022-07-10T23:02:56.047Z","dependency_job_id":null,"html_url":"https://github.com/rucas/taskd","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/rucas/taskd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rucas%2Ftaskd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rucas%2Ftaskd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rucas%2Ftaskd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rucas%2Ftaskd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rucas","download_url":"https://codeload.github.com/rucas/taskd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rucas%2Ftaskd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28492275,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T00:50:05.742Z","status":"online","status_checked_at":"2026-01-17T02:00:07.808Z","response_time":85,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","container","docker","task","taskwarrior"],"created_at":"2026-01-17T02:25:34.194Z","updated_at":"2026-01-17T02:25:34.275Z","avatar_url":"https://github.com/rucas.png","language":"Shell","readme":"\u003ch1 align=\"center\"\u003etaskd\u003c/h1\u003e\n\n\u003e A containerized taskwarrior server\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n## Table of Contents\n\n- [Install](#install)\n- [Usage](#usage)\n  - [Start a Taskwarrior Server](#start-a-taskwarrior-server)\n  - [Find New User Key](#find-new-user-key)\n  - [Sync with Taskwarrior Client](#sync-with-taskwarrior-client)\n- [Contributing](#contributing)\n- [FAQ](#faq)\n  - [Who?](#who)\n  - [What is Taskwarrior?](#what-is-taskwarrior)\n  - [When?](#when)\n  - [What is bootstrap.sh?](#what-is-bootstrapsh)\n  - [Why?](#why)\n- [License](#license)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## Install\n\n```sh\n$ docker pull rucas/taskd\n```\n\n## Usage\n\n### Start a Taskwarrior Server\n\n```sh\n$ docker run -d -p 53589:53589 \\\n    -v $PWD/taskd:/var/taskd \\\n    -e FIRST_NAME=rucas \\\n    -e LAST_NAME=mania \\\n    -e ORG=Public \\\n    -e CERT_CN=localhost \\\n    -e CERT_ORGANIZATION=rucas \\\n    -e CERT_COUNTRY=US \\\n    -e CERT_STATE=Oregon \\\n    -e CERT_LOCALITY=Portland \\\n    rucas/taskd\n```\n\n### Find New User Key\n\n```sh\n$ tail taskd/pki/stdout.txt\n\n...\nNew user key: 004e3fbd-d501-4c55-ab42-35280ccd7229\nCreated user 'rucas mania' for organization 'Public'\n\n```\n\n### Sync with Taskwarrior Client\n\n```sh\n$ ./bootstrap.sh \\\n    --ca taskd/pki/ca.cert.pem \\\n    --key taskd/pki/rucas_mania.key.pem \\\n    --cert taskd/pki/rucas_mania.cert.pem \\\n    --host localhost:53589 \\\n    --id 004e3fbd-d501-4c55-ab42-35280ccd7229 \\\n    --firstname rucas \\\n    --lastname mania \\\n    client\n```\n\n## Contributing\n\n:wave: :point_right: Check out the [Contributing](CONTRIBUTING.md) doc to get you started.\n\n## FAQ\n\n### Who?\n\nCheckout the [Maintainers](MAINTAINERS.md) doc to see who has contributed.\n\n### What is Taskwarrior?\n\n[Taskwarrior](https://taskwarrior.org/) is the ultimate TODO app from the command line. It's simple, fast, and organized, get shit done and move on.\n\n### When?\n\nSince commit [5c73c9](https://github.com/rucas/taskd/commit/5c73c9d0efe5a9d870df33771e5664c8f02b2953)\n\n### What is bootstrap.sh?\n\nA simple bash script to save time and automates configuring the client. For more help:\n\n```sh\n$ ./bootstrap -h \n```\n\n### Why?\n\nWhy not?\n\n## License\n\nMIT © rucas\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frucas%2Ftaskd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frucas%2Ftaskd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frucas%2Ftaskd/lists"}