Glam Prestige Journal

Bright entertainment trends with youth appeal.

I am building a Linux Docker system. Should I use ext4 or is there any need for XFS?

2

1 Answer

From the Docker documentation on docker storage drivers, the default Linux storage driver is overlay2.

Both ext4 and xfs are backend filesystems that support the overlay2 file system. You don't need to switch from ext4 to xfs just because of Docker; you should be OK with the default ext4 filesystem that Ubuntu installs.