ubuntu インストール

ubuntu 18.04にdockerをインストールする

ubuntu 18.04にdockerをインストールする方法についてメモです。以下にインストールのために実行するコマンドを順番に載せています。<pre><code>sudo apt updatesudo apt install apt-transport-https ca-certificates curl software-properties-commoncurl -fsSL https://download.docker.com/linux/ubuntu/gpg …

Shou Arisaka
1 分で読める
2018年10月20日

ubuntu 18.04にdockerをインストールする方法についてメモです。

以下にインストールのために実行するコマンドを順番に載せています。

sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
# apt-cache policy docker-ce
sudo apt install docker-ce
# sudo systemctl status docker
# sudo usermod -aG docker ${USER} # sudoなしで実行可能にする

この記事をシェア

Shou Arisaka 2018年10月20日

🔗 リンクをコピー