utf8 not working on smb shares
in some ubuntu version the utf8 is not installed by default (most cases on ubuntu cloud version)
to fix this issue do the following :
sudo apt update
sudo apt install linux-modules-extra-$(uname -r)
this will install the utf8.
to refersh the shares then do :
cd DefenderMax/policy_docker
docker compose down
sudo umount -a
sudo mount -a
docker compose up -d
Updated about 13 hours ago