removing public decorator in api (#11)

This commit was merged in pull request #11.
This commit is contained in:
2025-03-15 08:56:27 -05:00
committed by GitHub
parent 6a3e9267f2
commit 2646e79bb7
14 changed files with 901 additions and 605 deletions

View File

@@ -2,13 +2,15 @@ version: '3.8'
services:
azurite:
container_name: azurite
container_name: azurite-root
image: mcr.microsoft.com/azure-storage/azurite:3.33.0
ports:
- '10000:10000'
- '10001:10001'
- '10002:10002'
command: 'azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --loose'
volumes:
- ./azurite-root:/data
api:
container_name: root-api
@@ -26,4 +28,7 @@ services:
context: .
target: app
ports:
- '8080:8080'
- '8080:8080'
volumes:
azurite-root: