Go 言語向けガイド
このガイドでは、Docker を使ってコンテナー化した Go アプリケーションの生成、テストデプロイについて説明していきます。
Acknowledgment
Docker would like to thank Oliver Frolovs for his contribution to this guide.
What will you learn?
In this guide, you’ll learn how to:
- Create a
Dockerfile
which contains the instructions for building a container image for a program written in Go. - Run the image as a container in your local Docker instance and manage the container's lifecycle.
- Use multi-stage builds for building small images efficiently while keeping your Dockerfiles easy to read and maintain.
- Use Docker Compose to orchestrate running of multiple related containers together in a development environment.
- Configure a CI/CD pipeline for your application using GitHub Actions
- Deploy your containerized Go application.
Prerequisites
Some basic understanding of Go and its toolchain is assumed. This isn't a Go tutorial. If you are new to the : languages:, the Go website is a great place to explore, so go (pun intended) check it out!
You also must know some basic Docker concepts as well as to be at least vaguely familiar with the Dockerfile format.
Your Docker set-up must have BuildKit enabled. BuildKit is enabled by default for all users on Docker Desktop. If you have installed Docker Desktop, you don’t have to manually enable BuildKit. If you are running Docker on Linux, please check out BuildKit getting started page.
Some familiarity with the command line is also expected.
What's next?
The aim of this guide is to provide enough examples and instructions for you to containerize your own Go application and deploy it into the Cloud.
Start by building your first Go image.
モジュール
- イメージのビルド
Learn how to build your first Docker image by writing a Dockerfile
- コンテナーの実行
Learn how to run the image as a container.
- アプリの開発
Learn how to develop your application locally.
- テストの実行
How to build and run your Go tests in a container
- CI/CD の設定
Learn how to Configure CI/CD for your Go application
- デプロイのテスト
Learn how to deploy your Go application