How good is the Virtualized Linux Environmen for developmentt? Can I run stuff like Docker on it?
Docker mostly works. However, `sudo docker run -it centos bash` fails because the centos image (as do many others) uses extended attributes, which are not compatible with the underlying btrfs filesystem. In those cases, I've been rebuilding the Docker images myself from source, when possible. It's frustratingly close! wstein@penguin:~$ sudo docker run -it centos bash Unable to find image 'centos:latest' locally lates…
In fact, I added code to Docker almost 4 years ago to ignore ENOTSUP on xattr errors specifically because of filesystem support (AUFS was the issue at the time). So if it was a support issue you wouldn't see it, because the code already handles it. :P