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?

自身の学習記録(途中)

Last updated at Posted at 2024-11-16

土日の学習をアウトプット

以下の本を利用して学習

  • つくって、壊して、直して学ぶKubernates入門

疑問に思った単語

  • localhost

    • 自分自身を表す名前
    • http::/localhostで自分のコンピュータ
  • localhost:8080

    • 自分のPCの8080番ポート
  • docker container run localhost:8080:80

    • 自分のポート8080と dockerのポート80をつなぐ
  • docker image

    • アプリケーションを実行するために必要なすべてのもの、
    • メタデータなどのコンテナの設定の集合体
    • レイヤを重ねているもの
  • docker file

    • コンテナイメージの設計書
    • docker buildでdocker image作成可能
  • curlコマンド

    • 様々な通信プロトコルでデータの送受信をできるコマンド
    • 例としてWeb サイトへ http リクエストを送信してコンテンツを表示する(curl localhost:8080)
0
0
1

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?