Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

LINUXにDockerをインストールする

Last updated at Posted at 2024-01-24

Dockerのインストール

ソフトのインストール
#ソフトを入れるフォルダを作成
mkdir soft && cd soft

#dockerのバイナリファイルをダウンロード
wget https://get.docker.com/builds/Linux/x86_64/docker-latest.tgz

#ダウンロードしたファイルを解凍 。dockerという名前のフォルダができる
tar -xvzf docker-latest.tgz

#dockerディレクトリのパスを確認して, メモしておく
cd docker
pwd

Dockerにパスを通す

#homeに戻る
cd ~

#以下のパスをメモしたdockerのパスに変更して.bashrcに記入
PATH="$PATH":/home/gibukod/soft/docker

#.bashrcを編集してdockerフォルダのパスを通す
vim .bashrc

#lessコマンドで確認
less .bashrc

#.bashrcをリブート(再読み込み)
source ~/.bashrc

docker demoneがないといわれた場合

#以下のコマンドをdockerフォルダ内で実行
curl https://get.docker.com | sh

sudoがないとdockerを実行できない場合

dockerをsudoなしで実行できるようにする

#以下を実行
sudo gpasswd -a ユーザー名 docker

許可がないとエラーを吐かれた

以下のようなエラーを吐かれた場合。

Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.29/images/json: dial unix /var/run/docker.sock: connect: permission denied

以下で許可を与える。

sudo chmod 666 /var/run/docker.sock
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?