-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 997 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 997 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
29
30
31
32
33
34
35
36
37
38
39
version: '3.8'
# =====================================================================
# ⚠️ ENTERPRISE NOTE: This compose file is strictly for LOCAL DevSecOps
# simulation. Production deployments utilize managed Azure Key Vault and
# Azure Entra ID (OIDC) with zero hardcoded credentials.
# =====================================================================
services:
# Mock AWS Instance
aws-region:
build: .
command: python services/cloud_aws.py
ports:
- "8001:8001"
# Mock Azure Instance
azure-region:
build: .
command: python services/cloud_azure.py
ports:
- "8002:8002"
# The Pricing API (Simulates Spot Instance Fluctuations)
market-provider:
build: .
command: python services/market_api.py
ports:
- "8003:8003"
# The Intelligent Router
finops-router:
build: .
command: python app/router.py
ports:
- "8000:8000"
depends_on:
- aws-region
- azure-region
- market-provider