| Remove local docker images and containers. | Docker | docker system prune -a -f --volumes. | See howto. | Edit
Delete |
| Store docker images in specific location. | Docker | Create or edit /etc/docker/daemon.json and add/edit this content { "data-root":"/pathofnewlocation" }. | Useful on SOC devices to prevent the MicroSD filling up. | Edit
Delete |
| Fix docker login problems by installing the packages pass and gnupg2. | Docker | apt-get install pass gnupg2. | Cannot autolaunch D-Bus without X11 $DISPLAY. | Edit
Delete |
| Get list of sorted docker images. | Docker | docker ps --format '{{.Image}}'|sort. | You must have docker desktop installed ( or docker io on Linux ). | Edit
Delete |