如何在docker中打开多个终端?

时间:2016-09-30 14:59:53

标签: docker

我需要在一个需要两个终端的docker容器上启动两个不同的进程。实现这个目标的最佳方法是什么?

6 个答案:

答案 0 :(得分:105)

您可以从多个终端运行docker exec -it <container> bash以启动连接到同一容器的多个会话。

答案 1 :(得分:17)

扩展@eltonStoneman的好答案(对于像我这样的新码头人):

  1. 打开泊坞终端

  2. 让图片在后台运行为容器: docker run -d -it <image_id>

    • 提示: docker ps 将显示您刚从该图片中启动的container_id。
  3. Per @ eltonStoneman的建议: docker exec -it <container_id> bash

    • 现在您的docker终端正在显示容器的交互式终端。
  4. 打开另一个泊坞终端并执行步骤3,为容器创建另一个交互式终端。 (冲洗和重复)

答案 2 :(得分:1)

如果您能够运行 Kitematic - 您可以点击 exec 按钮在所选容器中打开终端。

答案 3 :(得分:0)

使用 Docker Compose :假设您有一个启用X-Windows的Compose yml。

您可以按照以下步骤启动图形IDE(例如qtCreator),nautilus和终端窗口的终端。

假设:

  • 主机是Windows10。1803
  • 图片是Ubuntu Xenial
  • Docker引擎是18.03.1-ce
  • Docker Compose是1.21.1
  • Windows Xming X Server为7.7.0.25-使用IPv4接口192.168.1.101

Dockerfile: Dockerfile-dev-ubuntu_xenial-创建Docker映像

FROM ubuntu:xenial
ARG DEBIAN_FRONTEND=noninteractive
LABEL maintainer "Your NAME <your.address@yourmailhost.com>"
RUN apt-get update ; apt-get install -y apt-utils desktop-file-utils dialog nautilus build-essential debhelper fakeroot ccache lsb-release
RUN apt-get install -y autotools-dev autoconf pkg-config libtool curl gedit git wget unzip lintian
RUN apt-get install -y qtcreator valgrind
RUN apt-get install -y sudo \
    && groupadd -r user -g 1000 \
    && useradd -u 1000 -r -g user -m -d /user -s /sbin/nologin -c "Build pkg user" user \
    && chmod 755 /user \
    && echo "user ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/user \
    && chmod 0440 /etc/sudoers.d/user
WORKDIR /user
USER user
VOLUME ["/buildpkg", "/user/projects", "/user/resources"]
CMD /bin/bash

Compose.yml: compose-dev-linux.yml

version: '3'
services:
  # Commands:
  #   Build: docker-compose -f compose-dev-linux.yml build dev_ubuntu_xenial
  #   Up   : docker-compose -f compose-dev-linux.yml up -d dev_ubuntu_xenial
  #   Run  : docker-compose -f compose-dev-linux.yml run dev_ubuntu_xenial
  #   Down : docker-compose -f compose-dev-linux.yml down
  # Host folders:
  #   %USERPROFILE%/Projects
  #   %USERPROFILE%/Projects/Docker-builds
  #   %USERPROFILE%/Projects/Docker-resources
  # Docker configuration file locations:
  #   %USERPROFILE%/Dockerfiles/Dockerfile-dev-ubuntu_xenial
  #   %USERPROFILE%/compose-dev-linux.yml
  dev_ubuntu_xenial:
    security_opt:
      - seccomp:unconfined
    cap_add:
      - SYS_ADMIN
    environment:
      - DISPLAY=192.168.1.101:0
    network_mode: host
    image: "application-dev-platform/application:ubuntu_xenial"
    container_name: application-dev-ubuntu_xenial
    command: bash -c "/bin/bash"
    tty: true
    build:
      context: ./Dockerfiles
      dockerfile: Dockerfile-dev-ubuntu_xenial
    volumes:
      - ./Projects:/user/projects
      - ./Projects/Docker-builds:/buildpkg
      - ./Projects/Docker-resources:/user/resources

运行:-初始Powershell终端

  1. 构建图片:docker-compose -f compose-dev-linux.yml build dev_ubuntu_xenial
  2. 启动Docker分离:docker-compose -f compose-dev-linux.yml up -d dev_ubuntu_xenial
  3. 列出容器:docker ps
  4. 启动容器:docker exec -it <CONTAINER ID> bash
  5. 启动qtCreator:user@linuxkit-<generatedid>:~$ qtcreator

运行:-新的Powershell终端

  1. 启动容器:docker exec -it <CONTAINER ID> bash
  2. 启动鹦鹉螺:nautilus

运行:-新的Powershell终端

  1. 启动容器:docker exec -it <CONTAINER ID> bash
  2. 启动终端:user@linuxkit-<generatedid>:~$

答案 4 :(得分:0)

docker run -it container_name bash使用bash promt启动新容器

docker exec -it container_name bash加入已运行容器的bash提示。

答案 5 :(得分:0)

首先获取容器的名称 docker container ls 然后运行run docker exec命令进入该容器 docker exec <container_id> bash