我安装了Docker容器并进行了后续步骤:
docker pull cloudera/quickstart:latest
docker images # note the hash of the image and substitute it below
docker run --privileged=true \
--hostname=quickstart.cloudera \
-t -i ${HASH} \
/usr/bin/docker-quickstart
所以,现在我有:Cloudera正在运行。但我看不到任何本地文件,那么如何加载我自己的文件,尤其是jar文件来运行Hadoop?
答案 0 :(得分:1)
docker run -i -t -v / path / to / my / data:/ opt / data image