我试过这个
docker run --rm -it -p 2181:2181 -p 8081:8081 -p 8082:8082 -p 8083:8083 -p 9092:9092 -e ADV_HOST=127.0.0.1 landoop/fast-data-dev
我收到了错误
docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.35/containers/create: dial unix /var/run/docker.sock: connect: permission denied.
我已检查守护程序是否正在运行
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: active (running) since уто 2018-01-23 10:52:50 CET; 2h 14min ago
Docs: https://docs.docker.com
Main PID: 11082 (dockerd)
这是我的/ etc / default / docker
# Customize location of Docker binary (especially for development testing).
#DOCKERD="/usr/local/bin/dockerd"
# Use DOCKER_OPTS to modify the daemon startup options.
#DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4"
# If you need Docker to use an HTTP proxy, it can also be specified here.
#export http_proxy="http://127.0.0.1:3128/"
# This is also a handy place to tweak where Docker's temporary files go.
#export DOCKER_TMPDIR="/mnt/bigdrive/docker-tmp"
如何编辑docker_opts来解决我的问题?
答案 0 :(得分:13)
尝试将您的用户添加到this.std.length; // Array properties
this.std[0].Phone; // Properties of the first student
群组:
docker
,然后usermod -aG docker "${USER}"
。在此之后,您必须重新启动docker守护程序:newgrp docker
。
答案 1 :(得分:0)
如果您正在Azure虚拟机或类似虚拟机上运行,请尝试使用sudo
运行Docker命令,例如:
sudo tensorflow/tools/ci_build/ci_build.sh CPU bazel test //tensorflow/...