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

railsアプリの開発をしていてdockerでの開発でよく使うコマンドを自分用にまとめてみる(随時更新予定)

Last updated at Posted at 2021-02-03

この記事で書くこと

すごく忘れっぽく毎回typoしたり、打ち直したりしていて、そんな自分のためにここを見れば迷わない、と思えるようなコマンドのまとめをする。

起動してるコンテナのlogをみたい

.zsh
docker logs --tail=10 -f コンテナの名前 

バックグラウンドでコンテナを起動

.zsh
docker-compose up -d コンテナの名前 

起動してるコンテナを停止したい。

.zsh
docker-compose stop コンテナの名前 

# 全てを停止は以下
docker-compose stop

起動しているコンテナの中に入る。

docker psで入りたいコンテナ名を確認してから、
docker container exec -it コンテナ名 bash(ubuntuの場合)

Dockerの情報を確認する。(OSが何か知りたい時など)

docker info
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?