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?

Dockerを使用したアプリ開発の最低限のコマンド

Posted at

この記事の目的

仕事でDockerを使用した開発を行った際に使用した、最低限のDockerの知識を記載します。これを見れば、Dockerについてあまり理解をしていなくても開発を行うことができます

前提

開発初期の環境構築の際はやや複雑なDockerの操作,設定が必要になります。
今回は、そういった最初期の設定がすでに完了している状態で考えています。

最低限覚えておきたいコマンド

  • docker compose up
    ・開発を実行するとき
    ・初回実行時や、サーバーを停止した場合に再実行する
    docker compose upは、コンテナを停止するコマンド(docker compose down)を実行した後や、VScodeやDockerDesktopを閉じた後に開発を再開する時再実行が必要です。

  • docker compose down
    ・コンテナを停止・削除するとき

おわりに

これはあくまで最低限なので、時間がある時にDockerの知識をインプットすることをお勧めします。

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?