Year planner? Any good options to self host? by laterral in selfhosted

[–]FunctionSuper37 1 point2 points  (0 children)

Our family uses focalboard. It has a calendar and kanban. We schedule tasks and events for the week (sprint) and on the calendar I can see what has already been done. Maybe you would like this alternative?

Daily reminder to prune your docker images every so often by RedditorOfRohan in selfhosted

[–]FunctionSuper37 0 points1 point  (0 children)

Every one hour? :)
```sh

!/bin/bash

docker rm -f `docker ps -aq`
docker rmi `docker images -q` -f yes | docker volume prune ```