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?

Docker備忘録

Last updated at Posted at 2021-01-11

Docker, docker-composeを使うときの備忘録。

最初にとても勉強になったサイト: docker と docker-compose の初歩 - Qiita

dockerコマンド

docker ps # 実行中コンテナ一覧
docker ps -a # 実行中+終了したコンテナ一覧
docker rm [ID] # 終了したコンテナを削除
docker image ls #手元にある(ダウンロードの必要がない)dockerイメージを表示
docker rmi [イメージ名] #dockerイメージを削除
docker run [イメージ名]
docker run --name [ラベル名] [コンテナ名] #ラベル名でコンテナを指定する
docker run -it --run [コンテナ名] #コンテナに入り、exitするとコンテナを削除する
docker run -d [イメージ名] /usr/sbin/httpd -DFOREGROUND #httpdデーモンを起動する
docker run -d -p 8080:80 [イメージ名] /usr/sbin/httpd -DFOREGROUND #httpdデーモンを起動して、コンテナの80番をホストの8080番に飛ばす
docker run -v [ホストPATH]:[コンテナ内のPATH] #ホストーコンテナ間のPATHの指定
docker run --env TERM=xterm256color #環境変数の指定
docker stop [ID] #コンテナを停止
docker restart [ID] # 終了したコンテナを実行中に
docker attach [ID] # 実行中のコンテナに入る
docker exec [ID] [コマンド] #実行中のコンテナにコマンドを与える
docker exec -it [ID] /bin/bash # 実行中のコンテナに入る
docker commit [停止中の元イメージ名] [作るイメージ名] # 元イメージから作るイメージを作る

detachするときはctrl + pの後にctrl + q。

Dockerfileを使うときは

Dockerfile
FROM centos:8

RUN yum update -y \
    && yum install httpd -y \
    && echo "hello world from dockerfile" > /var/www/html/index2.html \
    && yum clean all

ADD ./httpd/www/index.html /var/www/html/

EXPOSE 80

ENTRYPOINT ["/usr/sbin/httpd", "-DFOREGROUND"]

などとして、

docker build ./ -t [イメージ名] #Dockerfileからイメージを作成
docker run -d --rm -p 8080:80 [イメージ名] #イメージをデーモンとして起動

dockerイメージ

docker buildコマンド等でイメージを作成したものは、実行を停止した後も残っている。残っているイメージを確認したい場合は、docker image lsで確認できる。
イメージを削除した場合はまず、イメージの内容をdocker image lsで確認して、そのIMAGE IDを確認して、docker rmi [IMAGE ID]で消去できる。

docker-composeコマンド

docker-compose.ymlがあるディレクトリで

docker-compose up -d # Upにする
docker-compose down  # 停止中にする
docker-compose.yml
version: "3" #バージョンの指定。3がlatest

services:
  service1: #サービスの名前。自分で好きなものがつけられる。ステータスから確認して分かりやすい名前を付ける。 
    build: ./docker/service1/ #service1のDockerfileが置かれている場所
    ports:
      - 13141:3141 #ポートのマッピング。 ホスト側:ゲスト側
    environment: 
      - ENV_VAL1: value1 # 環境変数"ENV_VAL1"にvalue1を代入
      - ENV_VAL2: value2 
    volumes:
      - ./docker/service/host_dir:/path/4/guest_dir #ボリュームのマッピング。guest_dirをhost_dirにマップ。
    
  service2: 
    build: ./docker/service2/ 
    ports:
      - 12718:2718
    environment: 
      - ENV_VAL3: value3 
    volumes:
      - ./app:/path/4/app
docker-compose.yml
version: "3" #バージョンの指定 https://matsuand.github.io/docs.docker.jp.onthefly/compose/compose-file/compose-versioning/

services:
  postgresql:
    build: ./docker/postgresql/ #Dockerfileが置かれている場所
    ports:
      - 15432:5432 #ポートのマッピング
    environment:
      POSTGRES_USER: hoge #環境変数の指定
      POSTGRES_PASSWORD: hogehoge
    volumes:
      - ./docker/postgresql/initdb.d:/docker-entrypoint-initdb.d #ボリュームのマッピング
      - ./docker/postgresql/data:/var/lib/postgresql/data

  service1:
    image: service1 #イメージの直接指定
    ports:
      - 8888:8888
    volumes:
      - ./app:/usr/src/server

参考になるサイト: docker-compose.ymlの書き方について解説してみた - Qiita

あれこれ

一回環境を滅ぼす

docker-compose down --rmi all --volumes

インストール

Ubuntu

cat /etc/os-release

出力
PRETTY_NAME="Ubuntu 22.04.4 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.4 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy

公式Install Docker Engine on Ubuntu | Docker Docs
aptで入れるインストールのコマンド(2024/04/30閲覧)に従って

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

sudo docker run hello-world

を実行して、

出力
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete
Digest: sha256:a26bff933ddc26d5cdf7faa98b4ae1e3ec20c4985e6f87ac0973052224d24302
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

を確認。

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?