Clean up after Docker

After many build and run sessions with Dockerfiles, you’ll be mostly left with a few left-over containers, unneeded mounts and exited images. Especially if you don’t use the ‘rmi’ flag when running docker build. Find out how many images Docker has on a system You can always inspect which images are currently clogging up your […]

Move your htaccess files into your virtualhosts file

Every time your apache accesses a directory, it might be looking for a .htaccess in each of them. Not only in the current directly, but also the parent directories. That’s expensive lookups, especially on cloud based drives, which add network latency and cost expensive performance. Word on the street is, you don’t want to use […]