如何在我的ubuntu容器中安装Docker?

时间:2019-12-04 11:19:45

标签: docker ubuntu containers

我将docker安装在运行ubuntu:18.04的容器中以运行我的nodejs应用,我需要将docker安装在该容器中,因为我需要对另一个小型应用进行Docker

她是我的Dockerfile

FROM ubuntu:18.04

WORKDIR /app

COPY package*.json ./

# Install Nodejs
RUN apt-get update
RUN apt-get -y install curl wget dirmngr apt-transport-https lsb-release ca-certificates software-properties-common gnupg-agent
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt-get -y install nodejs

# Install Chromium
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
RUN apt-get update
RUN apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst \
      --no-install-recommends
RUN rm -rf /var/lib/apt/lists/*

# Install Docker
RUN curl -fsSL https:/download.docker.com/linux/ubuntu/gpg | apt-key add -
RUN apt-key fingerprint 0EBFCD88
RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
RUN apt-get update -y
RUN apt-get install -y docker-ce docker-ce-cli containerd.io

RUN npm install

COPY . .

CMD [ "npm", "start" ]

EXPOSE 3000

当容器装满时,我docker exec -it app bash。 如果我做了service docker start,然后ps ax,得到了

  PID TTY      STAT   TIME COMMAND
  115 ?        Z      0:00 [dockerd] <defunct>

我该怎么做才能在容器内使用docker,或者有没有使用apk而是apt-get的docker镜像?因为当我需要使用它时,出现了以下错误:

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

1 个答案:

答案 0 :(得分:2)

首先最好使用一个基础映像,而不是从头开始创建映像,要么用于node-image并安装docker,要么用于docker-image和已安装的节点。您需要的一切

FROM  node:buster
RUN apt-get update 
RUN apt install docker.io -y
RUN docker --version
ENTRYPOINT nohup dockerd >/dev/null 2>&1 & sleep 10 && node /app/app.js


第二件事,错误Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?,原因是您没有在Dockefile中启动docker进程,也不建议在容器中运行多个进程,就好像Docker进程死了一样,您将不知道状态,您必须在后台放置一个进程。

CMD nohup dockerd >/dev/null 2>&1 & sleep 10 && node /app/app.js

然后运行

docker run --privileged  -it -p 8000:8000  -v /var/run/docker.sock:/var/run/docker.sock your_image