0
0

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でGitによるバージョン管理

Posted at

DockerにはデフォルトでGitがインストールされているためPC自体にインストールする必要はありません。

#1.PCにGitがインストールされていない場合
自作の"myapp"にてPCにGitがインストールされていない状態でgitコマンドを入力すると

myapp % git init
xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.

このようなエラーが表示されます。Gitがインストールされていないので当たり前です。
スクリーンショット 2021-03-25 21.38.26.png
ポップアップも表示されます。PCにインストールする必要はないのでキャンセル。

#2.DockerでGitを使うには

アプリを起動

docker-compose up

Dockerで起動しているコンテナを確認(NAMEを確認)

docker ps

コンテナに移動

docker exec -i -t コンテナ名 bash

移動先ではGitコマンドが使えるようになっているはずです。
お疲れ様でした。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?