0
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 3 years have passed since last update.

docker チート

Posted at

#チートリスト

##Dockerコンテナ一覧表示

$ docker ps -a

##Dockerコンテナの削除

$ docker rm [コンテナID]
$ docker rm -f [コンテナID] //消えない場合

##Dockerイメージ一覧表示

$ docker images

##Dockerイメージの削除

$ docker rmi [イメージID]
$ docker rm -f [コンテナID] //消えない場合

##Docker Hubからイメージの取得

  • docker pull [OPTIONS] NAME[:TAG|@DIGEST]
apacheイメージの取得
$ docker pull httpd

##Dockerイメージからコンテナの作成・起動・停止

  • docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
$ docker run -d -p 8080:80 httpd
ポートがLISTENしているか確認
$ sudo lsof -i -P | grep "LISTEN"
コンテナの停止
$ docker stop [コンテナID]
コンテナの起動
$ docker start [コンテナID]

##Dockerコンテナにシェルで入る

$ docker exec -i -t [コンテナID] /bin/bash

##ボリュームのマウントオプション(永続化)
docker run -v "マウント元(ゲストOS):マウント先(コンテナ)"

$ docker run -d -p 80:80 -v "/home/developer/docker/htdocs/:/usr/local/apache2/htdocs/" httpd

#リファレンス

##Apache

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