-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (33 loc) · 828 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (33 loc) · 828 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
version: '3.8'
services:
aim:
image: aimstack/aim:latest
container_name: mltrack-aim
ports:
- "43800:43800"
volumes:
- ./.aim:/aim
- ./mlruns:/mlruns
environment:
- MLFLOW_TRACKING_URI=file:///mlruns
command: >
bash -c "
aim init &&
aimlflow sync --mlflow-tracking-uri=file:///mlruns --aim-repo=/aim --sync-interval=10 &
aim up --host 0.0.0.0
"
restart: unless-stopped
# Optional: MLflow server for remote tracking
mlflow:
image: ghcr.io/mlflow/mlflow:latest
container_name: mltrack-mlflow
ports:
- "5000:5000"
volumes:
- ./mlruns:/mlruns
command: >
mlflow server
--backend-store-uri file:///mlruns
--default-artifact-root file:///mlruns
--host 0.0.0.0
restart: unless-stopped