https://github.com/simpsonresearch/azure-function-app-acr-docker
https://github.com/simpsonresearch/azure-function-app-acr-docker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simpsonresearch/azure-function-app-acr-docker
- Owner: simpsonresearch
- Created: 2024-07-05T01:12:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-05T04:12:38.000Z (over 1 year ago)
- Last Synced: 2025-08-11T15:30:01.009Z (5 months ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Function App with Docker
This is a simple example of how to deploy an Azure Function App with an Azure Container Registry (ACR) and Docker.
## Getting Started
Build the Docker image and run it locally.
```bash
docker compose up
```
You can now access the api via `http://localhost:8080` and the function endpoint via `http://localhost:8080/api/httpTriggerTest`.
## Publish to Azure Container Registry (ACR) and Deploy to Azure Function App
What you need to do:
1. Update the variables in `deploy.sh`
2. Run the following command: `bash deploy.sh`
And there you go! You've deployed an Azure Function App with Docker.