If you followed the docker install guide closely it should not happen. In case you skipped the step of adding the user to the docker group, when loading the scene you'll have a "Curl error: could not connect to server", which is due to docker not creating the container at all, because the docker socket is not accessible by the user.
I would add the following warning to the documentation or to the Readme:
"Make sure the current user is part of the 'docker' group
groups
If you don’t see docker, add yourself:
sudo usermod -aG docker $USER
"
If you followed the docker install guide closely it should not happen. In case you skipped the step of adding the user to the docker group, when loading the scene you'll have a "Curl error: could not connect to server", which is due to docker not creating the container at all, because the docker socket is not accessible by the user.
I would add the following warning to the documentation or to the Readme:
"Make sure the current user is part of the 'docker' group
groupsIf you don’t see
docker, add yourself:sudo usermod -aG docker $USER"