Rust 向けガイド


言語別ガイド Rust 向けでは、Docker を使ってコンテナー化した Rust アプリケーションの生成方法について説明をはじめます。 このガイドでは以下について学んでいきます。

  • Containerize a Rust application
  • Build an image and run the newly built image as a container
  • Set up volumes and networking
  • Orchestrate containers using Compose
  • Use containers for development
  • Configure a CI/CD pipeline for your application using GitHub Actions
  • Deploy your containerized Rust application locally to Kubernetes to test and debug your deployment

この Rust 向けガイドのモジュール実行を完了させれば、このガイドの示す例や手順に基づいて、独自の Rust アプリケーションのコンテナー化ができるようになるはずです。

では手元にある Rust イメージのビルドからはじめます。

モジュール

  1. イメージのビルド

    Learn how to build your first Rust Docker image

  2. コンテナーの実行

    Learn how to run your Rust image as a container.

  3. アプリの開発

    Learn how to develop your Rust application locally.

  4. CI/CD の設定

    Learn how to Configure CI/CD for your application

  5. デプロイのテスト

    Learn how to test your Rust deployment locally using Kubernetes