-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 842 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 842 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
40
41
42
43
44
45
version: "3.7"
networks:
AIservice:
external: true
services:
backend:
build: FastAPI_backend
ports:
- 8111:8000
networks:
AIservice:
aliases:
- backend.docker
volumes:
- ./FastAPI_backend:/app
- ./src:/src
frontend:
build: streamlit_app
ports:
- 8501:8080
networks:
AIservice:
aliases:
- frontend.docker
depends_on:
- backend
volumes:
- ./streamlit_app:/app
- ./src:/src
tensorboard:
build:
context: 'tensorboard_backend'
dockerfile: "./Dockerfile"
networks:
AIservice:
aliases:
- tensorboard.docker
volumes:
- ./src/models/text/text_neural_simple/layers:/app/text/text_neural_simple/layers
ports:
- 6109:6009