1
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.

Ubuntu Server 20.04.3 LTS 構築#20 Docker構築(インストール~基本操作迄)

Last updated at Posted at 2022-03-12

実施日:2022/03/06~09

【今回の内容】
Dockerの導入~基本操作

Dockerの導入

1.パッケージリストの更新

sudo apt-get update

2.必要なソフトウェアのインストール

sudo apt-get install \
ca-certificates \
curl \
gnupg \
lsb-release
実行結果として、既に最新バージョンでした。

3.Docker公式GPG鍵を追加する

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

4.Docker本体のインストール

sudo apt-get install docker-ce docker-ce-cli containerd.io

詳しいインストール方法はGoogle検索や市販の指南書等でご確認ください。

コンテナの立ち上げ~削除

1.コンテナの立ち上げ

docker run --name コンテナ名 -dit ~
-ditは各オプションが合体したもの
-dはバックエンド処理
-iはコンテナにキーボードをつなぐ 
-tは特殊キーを使用可能にする

2.コンテナの稼働確認

docker ps
実行すると、下記の項目が表示されます。
CONTAINERID IMAGE COMMAND CREATED STATUS PORTS NAMES
STATUSの箇所がUpになっていたら稼働しています。

3.コンテナの起動停止

docker stop コンテナ名

4.コンテナの起動開始

docker start コンテナ名

5.コンテナの削除

docker rm コンテナ名 
※削除前にコンテナが停止していることが条件

イメージ

1.イメージ一覧の表示

docker image ls

2.イメージの削除

docker image rm IMAGE名
又は
docker image rm IMAGE ID 

関連項目
MYSQLのコンテナ作成~データベース作成

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