0
1

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.

Docker_CheatSheet

Posted at

Dockerfileの構成

# ubuntu:18.04 の Docker イメージからレイヤを作成
FROM ubuntu:18.04

# Dockerクライアントで操作しているディレクトリから、ファイルを(コンテナのレイヤに)追加
COPY . /app

# RUN はアプリケーションをmakeで構築/Dockerfileからimageを作成する時に実行
RUN make /app

# CMD はコンテナ内で何のコマンドを実行するか指定/DockerイメーシからDockerコンテナを作成される時に実行
CMD python /app/app.py

# bashを使う方法
SHELL ["/bin/bash", "-c"]

Dockerfileを使用してDockerイメージをビルド

docker image build -t {イメージ名:タグ名} {Dockerfileのディレクトリ}

docker image build -t test-image:v1 .
  • tオプションを使用すると、イメージ名(REPOSITORY)とタグ(TAG)を指定できます。
  • tオプションを使用しない場合、イメージ名(REPOSITORY)とタグ(TAG)の値は<none>になります。

Dockerイメージの一覧

docker image ls # docker imageの一覧を表示
REPOSITORY        TAG      IMAGE ID       CREATED             SIZE
<none>            <none>   a086e6cb87f0   40 seconds ago      800MB
test-image        v1       806faed5d0a8   About an hour ago   800MB

Dockerイメージを使って、作成実行


# docker container run [options] イメージ名:[タグ名]
docker container run --name {コンテナ名} -it {image名} /bin/bash

docker container run --name test-container1 -it test-image:v1 /bin/bash

root@71fdfe8dfb61:/# cat /etc/issue
Ubuntu 18.04.6 LTS \n \l

コンテナの作成

# -pを使用してポートを開くことも可能 EX) ginでは8080ポートを使用するので XXXX:8080(gin)
docker container create  -p 8080:8080  --name {コンテナ名} -it {image名} 

コンテナの起動

docker container start {CONTAINER IDまたはコンテナ名}

コンテナのbash、shに入る

docker exec -it {CONTAINER IDまたはコンテナ名} /bin/bash
docker exec -it {CONTAINER IDまたはコンテナ名} /bin/sh

コンテナに入る

$ docker attach {CONTAINER IDまたはコンテナ名}

コンテナの一覧

docker ps
実行中のコンテナのみ
docker ps -a

コンテナを削除

docker rm -f {CONTAINER ID or コンテナ名}

Dockerイメージの削除

docker rmi {IMAGE ID or イメージ名}
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?