You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under Windows with Docker Desktop (WSL2 doesn't seem to be necessary), docker socket has no write access for the group. For that reason, the entry point fails with a Permission Denied Error when the docker socket is mounted. You can use the following commands to give the group write access. We should add this to the documentation, but also make clear that this should discussed with the responsible administrator of the system.
Start your Docker Desktop and open the command prompt. Run the following command in the command prompt:
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock ubuntu chmod g+w /var/run/docker.sock
to check if the command was successful, run:
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock ubuntu ls -l /var/run/docker.sock
the output must be: srwxrwxr-x 1 root root 0 May 14 07:07 /var/run/docker.sock
Under Windows with Docker Desktop (WSL2 doesn't seem to be necessary), docker socket has no write access for the group. For that reason, the entry point fails with a Permission Denied Error when the docker socket is mounted. You can use the following commands to give the group write access. We should add this to the documentation, but also make clear that this should discussed with the responsible administrator of the system.
Start your Docker Desktop and open the command prompt. Run the following command in the command prompt:
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock ubuntu chmod g+w /var/run/docker.sock
to check if the command was successful, run:
docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock ubuntu ls -l /var/run/docker.sock
the output must be:
srwxrwxr-x 1 root root 0 May 14 07:07 /var/run/docker.sock
Now you run:
docker run --name ai-lab --volume my-vol:/home/jupyter/notebooks --volume /var/run/docker.sock:/var/run/docker.sock --publish 0.0.0.0:49494:49494 exasol/ai-lab:2.0.0
The text was updated successfully, but these errors were encountered: