forked from Azure-Samples/snippy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (25 loc) · 784 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (25 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.8'
services:
# Azure Storage Emulator (Azurite)
azurite:
image: mcr.microsoft.com/azure-storage/azurite:latest
container_name: snippy-azurite
ports:
- "10000:10000" # Blob service
- "10001:10001" # Queue service
- "10002:10002" # Table service
volumes:
- azurite-data:/data
command: azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0
restart: unless-stopped
# Durable Task Scheduler Emulator
dts-emulator:
image: mcr.microsoft.com/dts/dts-emulator:latest
container_name: snippy-dts-emulator
ports:
- "8080:8080" # gRPC endpoint for Function App connection
- "8082:8082" # Dashboard UI
restart: unless-stopped
volumes:
azurite-data:
name: snippy-azurite-data