我写了一个 node 应用,他可以构建和推送 docker 镜像,但我希望将他作为 Docker 容器运行。
我可以使用下面的方法在容器中运行docker命令,但是这不能运行Node App。
docker run -i --rm --privileged docker:dind sh
答案 0 :(得分:0)
我终于找到了答案:
FROM node
RUN apt-get update && apt-get install -y apt-transport-https \
ca-certificates curl gnupg2 \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
RUN apt-key fingerprint 0EBFCD88
RUN add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable"
RUN apt-get update
RUN apt-get install -y docker-ce-cli
RUN apt-get install -y docker-compose
CMD ["node", "-v"]