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

docker & docker-compose使うやつまとめ(随時追加)

1
Last updated at Posted at 2018-01-20

動いてるコンテナ一覧

docker ps -a

上記の[NAMES]がコンテナ名

コンテナに入る時

docker exec -it コンテナ名 bash

Dockerコンテナ等一括削除するとき

docker system prune

Dockerコンテナ立てるとき

docker run -t .

## コンテナ一括削除

docker rm $(docker ps -aq)

## docker-composeでデバッグ

- docker-composeに以下を設定 [参考](https://knowledge.sakura.ad.jp/5736/)

stdin_open: true
tty: true
1
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
1
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?