7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Dockerコンテナ内で矢印キーが使えない現象について

Last updated at Posted at 2021-02-10

#はじめに
非常に不便に感じていた、Dockerコンテナ内で矢印キー(またはCtrl+PとかCtrl+N)が使えない現象。
ようやく解決できたので、解決手順の備忘録残しときます。
ごめんよDocker。僕が悪かった…。

(※ 根本的な解決策ではないと思います。もし原因が分かる方いたらご指摘いただけるとありがたいです。)

#起こっていた現象
$ docker-compose exec #{container} shでコンテナ内に入ると、
↑矢印キーが^[[A、↓矢印キーが^[[Bなどと判断され、ショートカットできない。

#{container}はサービス名(コンテナ名)。
Docker学習開始時からこの現象に悩まされ、渋々コンテナ外部からrailsコマンド等の操作をしていました…。

#解決方法
$ docker-compose exec #{container} /bin/bashとすることで解決。

なぜshではダメで、/bin/bashだといけるのかはよく分からないんですが、
こちらのサイトをヒントに、ターミナル上で$ echo $SHELLを打ったところ、

ターミナル
$ echo $SHELL
/bin/bash

と表示されたので、/bin/bashを試しました。

何となくですが、bashshそれぞれのシェルスクリプトの働きの違いによるものなのかな…と感じています。
もう少し調べてみる必要がありますね(汗)

7
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?