Skip to content

deploy-edge-20250401

Latest
Compare
Choose a tag to compare
@NewJerseyStyle NewJerseyStyle released this 23 Mar 18:55
· 3 commits to edge-civictechto since this release
13d200c

Azure Deployment tutorial

  1. In Azure cloud shell
  2. Use the docker-compose.yml below if you plan to deploy as web service, the docker-compose.yml for Azure web server must be smaller than 4000 B file size
  3. Run az webapp create --resource-group PolisDev --plan ASP-PolisDev-ae5d --name civictech-polis --multicontainer-config-type compose --multicontainer-config-file docker-compose.yml in the Azure cloud shell

If you want to deploy as Azure Container App, here is the Azure CLI command.

az containerapp compose create \
    --resource-group PolisDev \
    --environment polis-civictech \
    --compose-file-path docker-compose.yml

The above instructions will start the polis server of our version by pulling the pre-built images from our Docker Hub repository, but it is possible to build from Dockerfile if you want.

What's Changed

New Contributors

Full Changelog: deploy-edge-20250203...deploy-edge-20250323