_ [comp] docker vs systemd 232

Docker が

invalid header field value "oci runtime error: container_linux.go:247: 
starting container process caused \"process_linux.go:359: container init caused \\\\"rootfs_linux.go:53: mounting \\\\\\\"cgroup\\\\\\\" to rootfs \\\\\\\"/var/lib/docker/devicemapper/mnt/8c26d2f3ae0b4d69b4375705d3c5b03386e64c9cec69dd012e972f2055acf820/rootfs\\\\\\\" at \\\\\\\"/sys/fs/cgroup\\\\\\\" caused \\\\\\\"no subsystem for mount\\\\\\\"\\\"\"\n" 

みたいな具合に動かなくなった。探してみると Can not run any docker container (fresh install after reboot) とあった。そこからたどれる Cannot start a container with systemd 232 で、systemd の問題?なのでブートパラメータにオプションを追加してやればいいみたい。/etc/default/grub で

-GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset"
+GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset systemd.legacy_systemd_cgroup_controller=yes"

として update-grub2 して再起動してやることで Docker が動くようになった。