5

在“VS Code 远程开发”中启动附加容器时,有没有人找到在启动 vscode 集成终端时更改容器外壳的方法。

它似乎运行类似的东西。

docker exec -it <containername> /bin/bash

我正在寻找相当于

docker exec -it <containername> /bin/zsh

我为附加容器找到的唯一设置是

"remote.containers.defaultExtensions": []
4

4 回答 4

2

我为我的开发环境使用了一个 Docker 容器,并bash在我的 Dockerfile 中设置了 shell:

# …
ENTRYPOINT ["bash"]

然而,当 VS Code 连接到我的容器时,它坚持使用让/bin/ash我发疯的外壳......但是修复(至少对我而言)非常简单但并不明显:

在此处输入图像描述

.devcontainer.json参考

在我的情况下,我需要做的就是在我的.devcontainer.json文件中添加以下条目:

{
  …
  "settings": {
    "terminal.integrated.shell.*": "/bin/bash"
  }
  …
}

完整.devcontainer.json文件(仅供参考)

{
  "name": "project-blueprint",
  "dockerComposeFile": "./docker-compose.yml",
  "service": "dev",
  "workspaceFolder": "/workspace/dev",
  "postCreateCommand": "yarn",
  "settings": {
    "terminal.integrated.shell.*": "/bin/bash"
  }
}
于 2021-01-30T20:38:44.497 回答
2

我和它一起工作

RUN echo "if [ -t 1 ]; then" >> /root/.bashrc
RUN echo "exec zsh" >> /root/.bashrc
RUN echo "fi" >> /root/.bashrc

仍然有兴趣知道是否有办法为每个容器设置它。

于 2019-05-04T23:54:32.827 回答
1

我想为这个线程做出贡献,因为我花了相当多的时间在网络上寻找一个很好的解决方案,涉及到 VS Code 的用于 terminal.integrated.profiles.linux 的新 API

请注意,截至 2022 年 1 月 20 日,已注释和未注释的 json 都有效。未注释掉的行是使用开发容器的新的非弃用方式。

{
"settings": { 
        // "terminal.integrated.shell.linux": "/bin/zsh"
        "terminal.integrated.defaultProfile.linux": "zsh", 
        "terminal.integrated.profiles.linux": {
            "zsh": {
                "path": "/bin/zsh"
            },
        }
    }
}

如果有人感兴趣,我还想出了如何将我的 ZSH 内置到图像中。

Dockerfile:

# Setup Stage - set up the ZSH environment for optimal developer experience
FROM node:16-alpine AS setup

RUN npm install -g expo-cli
# Let scripts know we're running in Docker (useful for containerized development)
ENV RUNNING_IN_DOCKER true
# Use the unprivileged `node` user (pre-created by the Node image) for safety (and because it has permission to install modules)
RUN mkdir -p /app \
    && chown -R node:node /app
# Set up ZSH and our preferred terminal environment for containers
RUN apk --no-cache add zsh curl git
# Set up ZSH as the unprivileged user (we just need to start it, it'll initialize our setup itself)
USER node
# set up oh my zsh
RUN cd ~ && wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh && sh install.sh
# initialize ZSH
RUN /bin/zsh ~/.zshrc

# Switch back to root
USER root
于 2022-01-21T05:03:00.693 回答
-1

看看这个问题。把shell路径改成你服务器的shell路径

https://github.com/microsoft/vscode-remote-release/issues/220#issuecomment-490374437

于 2019-05-13T02:13:16.957 回答