tp-note 1.16.1

Minimalistic note taking: save and edit your clipboard content as a note file
#!/bin/sh
#docker-compose build

### This is equivalent:
docker build -t build-env-dev - < Dockerfile

### Stop all containers with:
#docker stop $(docker ps -q)

### Remove unused images with:
# docker image prune --all

### Remove all dangling data, i.e. containers stopped, volumes excluding
### containers and images with no containers:
# docker system prune --all