Spaces:
Sleeping
Sleeping
File size: 909 Bytes
8a08300 |
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 40 41 42 43 |
version: '3.8'
services:
# Redis Feature Store
redis:
image: redis:7-alpine
container_name: payshield-redis
ports:
- "6379:6379"
volumes:
- redis_data:/data
command: redis-server --appendonly yes
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
networks:
- payshield-network
# MLflow Tracking Server (for future phases)
mlflow:
image: ghcr.io/mlflow/mlflow:v2.10.0
container_name: payshield-mlflow
ports:
- "5000:5000"
environment:
- MLFLOW_BACKEND_STORE_URI=sqlite:///mlflow/mlflow.db
- MLFLOW_ARTIFACTS_DESTINATION=/mlflow/artifacts
volumes:
- mlflow_data:/mlflow
command: mlflow server --host 0.0.0.0 --port 5000
networks:
- payshield-network
volumes:
redis_data:
mlflow_data:
networks:
payshield-network:
driver: bridge
|