Docker和Cloudera快速入门:如何运行自己的jar文件?

时间:2016-04-18 18:20:22

标签: java hadoop docker cloudera bigdata

我安装了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?

1 个答案:

答案 0 :(得分:1)

您可以按照official documentation

中的说明将本地文件夹挂载到docker容器中

docker run -i -t -v / path / to / my / data:/ opt / data image