Google Cloud Runを使用してサービスを公開する
Table of Contents
Dockerがそのまま動いて便利。
Google Cloudでプロジェクトを作成する
https://console.cloud.google.com/
既存のプロジェクトがある場合は、そのプロジェクトを選択する。
事前にDockerイメージを作成してArtifacts Registryにアップロードする
Google Cloud CLI未インストール時はインストールする。 https://cloud.google.com/sdk/docs/install?hl=ja
gcloud init
作成したプロジェクトIDを指定する。
Artifact Registryにアップロードする
https://console.cloud.google.com/artifacts
リポジトリの作成 → 名前とリージョンを指定 → 作成
作成されたリポジトリを選択し、リポジトリのパスをコピーする。 だいたい以下のような形式になる。 asia-northeast2-docker.pkg.dev/mydiary-449412/mydiary
cloudbuild.yamlを作成する
steps:
# docker build
- name: "gcr.io/cloud-builders/docker"
args:
[
"build",
"-t",
"asia-northeast2-docker.pkg.dev/$PROJECT_ID/mydiary/mydiary:0.0.1",
"-f",
"Dockerfile",
".",
]
# push built images to Container Registry
images: ["asia-northeast2-docker.pkg.dev/$PROJECT_ID/mydiary/mydiary:0.0.1"]
大きく分けてビルドとプッシュの2つのステップがある。 先ほど作成したリポジトリのパスを指定する。末尾にはイメージ名:バージョンを指定する。
Dockerfileを作成する
※以下はGoの場合
# Use the official Go image as the base image
FROM golang:1.22
# Set the working directory inside the container
WORKDIR /app
# Copy the Go module files
COPY go.mod go.sum ./
# Download and install the project dependencies
RUN go mod download
# Copy the rest of the project files
COPY . .
# Build the Go application
RUN go build -o app
EXPOSE 80
# Set the entry point for the container
CMD ["./app"]
Dockerイメージをビルドする
gcloud builds submit --config cloudbuild.yaml
ERROR: (gcloud.builds.submit) PERMISSION_DENIED: The caller does not have permission. This command is authenticated as xxxx@gmail.com which is the active account specified by the [core/account] property 権限を追加する必要がある。
https://console.cloud.google.com/iam-admin/iam より Cloud Build 編集者権限追加
ビルドが成功すると、Artifact Registryにイメージがアップロードされる。 https://console.cloud.google.com/artifacts
Cloud Runを有効にする
https://console.cloud.google.com/run へアクセスし、Cloud Runを有効にする。
コンテナへデプロイする
コンテナをデプロイ(サービス)を選択し、コンテナイメージを選択する。
認証:未認証の呼び出しを許可 コンテナポート:Dockerfileで指定したポート番号を指定する。デフォルトだと8080になっている。
URLが発行されるので、少し待ってからアクセスするとサービスが公開されていることが確認できる。
アプリケーションのバージョンアップを行う
cloudbuild.yamlのバージョンを変更し、ビルドを行う。
Cloud Runのサービスを選択し、『新しいリビジョンの編集とデプロイ』を選択する。 https://console.cloud.google.com/run 最新のコンテナイメージを指定してデプロイする。
次回はGitHubと連携してプッシュされたら自動でデプロイするところまでやりたい。