·
3 commits
to edge-civictechto
since this release
Azure Deployment tutorial
- In Azure cloud shell
- Use the
docker-compose.yml
below if you plan to deploy as web service, thedocker-compose.yml
for Azure web server must be smaller than 4000 B file size - 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
- Add and improve semantic structure of home page by @yshng in #126
- Update node module version by @NewJerseyStyle in #144
- Revert "Feature: client-admin upgrade to react router v6" by @thomassth in #148
New Contributors
Full Changelog: deploy-edge-20250203...deploy-edge-20250323