Hi @irshadan
you are probably hit by SONAR-15167. we updated our base image to from alpine 3.12 to alpine 3.14 where they did a change to musllibc that enables the faccessat2 syscall. this one is not known to old docker installations <20.10.0.
you can update your container runtime (docker) or start sonarqube with a custom seccomp profile.
for the seccomp profile you can basically use the one from upstream here and change line 2 from SCMP_ACT_ERRNO
to SCMP_ACT_TRACE
. then start your container with like this:
docker run --rm -it --name "test-sonarqube-unique" --security-opt seccomp=/path/to/seccomp/profile.json server1.net:8083/sonarqube:9-community
hope that helps