- Start the local server:
./gradlew dev
- Open: localhost:8080
-
Enable the Container, Container Registry, Cloud Build, and Cloud Run APIs:
gcloud services enable container.googleapis.com containerregistry.googleapis.com cloudbuild.googleapis.com run.googleapis.com
-
Build the container image on Cloud Build using Buildpacks, storing the image on Google Container Registry:
export PROJECT_ID=YOUR_GCP_PROJECT gcloud builds submit --pack=image=gcr.io/$PROJECT_ID/ktor-hello-world
-
Deploy the container on Cloud Run:
gcloud run deploy \ --project=$PROJECT_ID \ --region=us-central1 \ --platform=managed \ --allow-unauthenticated \ --image=gcr.io/$PROJECT_ID/ktor-hello-world \ ktor-hello-world
-
Build the image using Buildpacks:
pack build --builder=gcr.io/buildpacks/builder:v1 ktor-hello-world
-
Run image:
docker run -p8080:8080 ktor-hello-world
-
Open: localhost:8080