-
Notifications
You must be signed in to change notification settings - Fork 10
/
docker-compose.yml
50 lines (45 loc) · 1015 Bytes
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '3.8'
services:
deep_learning:
container_name: ultra
image: jhoeller/computer-vision:latest
volumes:
- ./app/:/app
ports:
- 8888:8888
networks:
- api_bridge
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 3 # num of gpus
capabilities: [gpu]
restart: always
mlflow:
image: jhoeller/mlflow-v.1.14.1:default
ports:
- 5000:5000
volumes:
- ./mlflow:/mlflow
networks:
- api_bridge
restart: always
command: mlflow server --backend-store-uri sqlite:////mlflow/mlflow.sqlite --default-artifact-root /mlflow/artifacts --host 0.0.0.0
tensorboard:
image: tensorflow/tensorflow
networks:
- api_bridge
volumes:
- ./tensor:/notebooks
ports:
- 6006:6006
command: tensorboard --logdir=/notebooks/graphs --bind_all
networks:
api_bridge:
driver: bridge
volumes:
app_data:
mlflow_data:
tensor_data: