Sign inSign up

chko/tinytodo

By chko

Updated over 5 years ago

a most minimal todo list in the shell - on Alpine

Image
0

420

chko/tinytodo repository overview

Docker Cloud Build Status

tinytodo

tinytodo (a most minimal todo list in the shell) on Alpine

quickstart

The todolist recfile is by default stored in a Docker volume. First we create a dummy container for the volume (make sure to not delete this container):

docker run --name todo_volume -ti chko/tinytodo lstodos

We can now start temporary containers to work with the file from the volume.

Create item:

docker run --rm -ti --volumes-from todo_volume chko/tinytodo mktodo 'my first todo'

List items:

docker run --rm -ti --volumes-from todo_volume chko/tinytodo lstodos

Delete items:

docker run --rm -ti --volumes-from todo chko/tinytodo rmtodo <id>

Tag summary

Content type

Image

Digest

Size

12.3 MB

Last updated

over 5 years ago

docker pull chko/tinytodo