This can be fixed, as found here.
The idea is to add a kernel parameter that will allow these containers to operate correctly again, by adding vsyscall=emulate
.
Most often, this can be added to the GRUB options.
$ sudo vim /etc/default/grub
# Modify items passed to Linux by GRUB
GRUB_CMDLINE_LINUX="vsyscall=emulate"
Then remaking the gurb configuration.
$ sudo grub-mkconfig -o /boot/grub/grub.cfg
$ sudo reboot
For other ways to set a kernel parameter, consult here.