I'm learning how to work with loop devices and noticed that Docker uses them by default on CentOS. I can mount loop devices that I created, but when I try to mount Docker's devices I get error:
$ mount /dev/mapper/docker-8\:1-3146939-pool /mnt/docker-data/
mount: wrong fs type, bad option, bad superblock on /dev/mapper/docker-8:1-3146939-pool,
missing codepage or helper program, or other error
I can't even see what FS it uses:
$ lsblk --fs
loop1
└─docker-8:1-3146939-pool
loop2
└─docker-8:1-3146939-pool
I'd like to understand how can Docker work with such device without FS and why it's not possible for me to mount it?