Skip to content

Commit

Permalink
Add how to use Azure Container Apps (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
koudaiii committed Dec 27, 2021
1 parent f5762be commit da244de
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,18 @@ aws lambda update-function-code \
* Note: The image must be pushed to [ECR](https://aws.amazon.com/ecr/), based on the AWS provided base image, and use the [`aws-lambda-go`](https://github.com/aws/aws-lambda-go) framework.
See [official docs](https://docs.aws.amazon.com/lambda/latest/dg/go-image.html) for more information.

Or [Azure Container Apps](https://azure.microsoft.com/services/container-apps/):

```
az containerapp update \
--name my-container-app
--resource-group my-resource-group
--image $(ko publish ./cmd/app)
```

* Note: The image must be pushed to [ACR](https://azure.microsoft.com/services/container-registry/) or other registry service.
See [official docs](https://docs.microsoft.com/azure/container-apps/) for more information.

## Configuration

Aside from `KO_DOCKER_REPO`, you can configure `ko`'s behavior using a
Expand Down

0 comments on commit da244de

Please sign in to comment.