permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.45/containers/json": dial unix /var/run/docker.sock: connect: permission denied
Ubuntu 22.04 LTS 에서 루트 계정이 아닌 사용자 계정으로 도커를 처음 깔았다면 다음과 같은 오류가 뜰 것이다.
해결방법은 docker 그룹에 유저를 추가하면 된다.
sudo usermod -aG docker $USER
sudo systemctl restart docker