-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
23 lines (23 loc) · 1.05 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite
command: "azurite --loose --blobHost 0.0.0.0 --blobPort 10000 --queueHost 0.0.0.0 --queuePort 10001 --tablePort 10002 --tableHost 0.0.0.0 --location /workspace"
ports:
- 10000:10000
- 10001:10001
- 10002:10002
volumes:
- ./azurite:/workspace
kanelson:
image: kanelson
build:
context: .
dockerfile: Dockerfile
environment:
- ConnectionStrings__TableStorage=DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;TableEndpoint=http://azurite:10002/devstoreaccount1;
- ConnectionStrings__BlobStorage=DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;
- ASPNETCORE_ENVIRONMENT=Development
depends_on:
- azurite
ports:
- "7289:8080"