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 1 year has passed since last update.

Shell の変更と Dockerでコンテナからイメージを作る&Windowsとのファイル共有

Last updated at Posted at 2020-06-06

Shell

シェル変更

chsh -s $(which zsh)

git

ユーザー名パスワード関連

git config --global credential.helper store

socketの使い方サンプル

Docker

コンテナ作ってみる。

ubuntuのイメージの'A0'のコンテナ作る(のが多いょ)

docker run --name="A0" -it ubuntu:latest

いろいろインストールしてみる

/# apt-get update
/# apt-get install curl vim git net-tools build-essential -y
/# apt-get install zsh -y
/# apt-get install cmake -y -6 -79

作業ディレクトリ作成

/# mkdir /home/products

コミットし、dev_01のイメージを作ります。

docker commit A0 dev_01

バインドの設定
ホストのフォルダーをDockerから見れるようにします。

※ Docker Toolbox on Windows でのやり方です。

  1. Oracle VM VirtualBox を起動
    image.png

defaultというのが左にできています。
設定(S)をクックして下の画面を出します。

image.png

左の共有フォルダーを選択して共有フォルダーを設定します。

名前(AAA)を憶えておきます。

先ほど作ったイメージdev_01を実行してみましょう。

docker run -it -v /AAA:/home/products dev_01 /bin/zsh

共有フォルダの設定で作った、名前 products を 使います。

これでWindows側の、c:\AAAの中身がDocker側の/home/productsで読み書きできます。

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