Installer bcmath dans un conteneur
Bookstack
plus nécessaire depuis je sais pas quelle maj
install bcmath php extension in a container
# enter the container
sudo docker exec -it <container_name> bash
# install bcmath
apk add -U --no-cache php81-bcmath
# check if correctly installed
php -m
OR
# D...