28 lines
553 B
YAML
28 lines
553 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
azurite:
|
|
container_name: azurite
|
|
image: mcr.microsoft.com/azure-storage/azurite
|
|
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'
|
|
|
|
api:
|
|
container_name: api
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '7071:3000'
|
|
env_file:
|
|
- ./api/.env
|
|
|
|
# swa:
|
|
# image: swacli/static-web-apps-cli
|
|
# ports:
|
|
# - "4280:4280"
|
|
# command: "swa start "
|