Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

docker permission denied

sudo groupadd docker
sudo usermod -aG docker $USER
Comment

docker access denied

sudo newgroup docker
sudo chmod 666 /var/run/docker.sock
sudo usermod -aG docker ${USER}
Comment

Docker permission denied

sudo usermod -a -G docker $USER
Comment

docker permission denied dial

sudo setfacl --modify user:$USER:rw /var/run/docker.sock
Comment

docker access denied windows 10

It seems that your problem is at you last command. In : docker run -v D:/TensorFlow-LiveLessons:/home/jovyan/work -it --rm -p 8888:8888 tensorflow-ll-stack ., you are telling docker to launch a container with a command ".". From the doc you linked me in the comments, you mixed up docker build and docker run.

Docker build take a context path as a parameter, where it can find a Dockerfile. It often a ".", if you are executing the command from the same directory.

Docker run take a command as a parameter, which will be used as an entry point for you image.

Now, it looks more like a copy past problem, since you documentation show that the docker run command is docker run -v c:/full/path/to/the/clone:/home/jovyan/work -it --rm -p 8888:8888 tensorflow-ll-stack without the point, but it never bad to learn about docker build and docker run.

Have fun!
Comment

PREVIOUS NEXT
Code Example
Shell :: git rebase an origin branch into my branch 
Shell :: install pydotplus by pip ubuntu 
Shell :: tar.gz terminal 
Shell :: vscode display all extensions 
Shell :: arch add fonts 
Shell :: How to undo a pushed merge 
Shell :: git transfer changes to another branch 
Shell :: react router dom with typescript 
Shell :: sdkman 
Shell :: Failed to execute child process “python” (No such file or directory) 
Shell :: your github oauth token for github.com contains invalid characters 
Shell :: `FirebaseAnalytics` requires CocoaPods version `= 1.10.0`, which is not satisfied by your current version, `1.5.2`. 
Shell :: git commit back in time 
Shell :: sleep command bash 
Shell :: What should you run to modify your last commit? 
Shell :: create group ubuntu 
Shell :: linux get current user 
Shell :: cmd taskkill 
Shell :: scp download file 
Shell :: yarn 2 outdated packages 
Shell :: ssh-copy-id 
Shell :: git bash set global username and password 
Shell :: git command create new branch from current and move changes 
Shell :: How to install Apache 2 in Ubuntu? 
Shell :: install cairo 
Shell :: matlab on ubuntu 
Shell :: trusted installer owner 
Shell :: linux screen list 
Shell :: substring replacement 
Shell :: connect to wifi via Terminal 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =