-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 1.1 KB
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (34 loc) · 1.1 KB
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
version: "3.9"
services:
apiGateway:
image: marcosmartinezfco/tfg-api-gateway
container_name: api-gateway
networks:
- tfg-net
ports:
- "8000:8000"
depends_on:
- dataPipeline
- predictionModule
dataPipeline:
image: marcosmartinezfco/tfg-data-pipeline
container_name: data-pipeline
networks:
- tfg-net
predictionModule:
image: tensorflow/serving
container_name: prediction-module
networks:
- tfg-net
ports:
- "8501:8501"
depends_on:
- dataPipeline
volumes:
- ${MODELPATH}/mlp_model:/models/mlp_model
environment:
- MODEL_NAME=mlp_model
networks:
tfg-net:
name: tfg-net
driver: bridge