-
Notifications
You must be signed in to change notification settings - Fork 46
/
docker-compose.yml
56 lines (53 loc) · 1.27 KB
/
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
51
52
53
54
55
56
version: "3"
services:
labeltool-lite-backend:
build:
context: ./backend
dockerfile: ./Dockerfile
# args:
# http_proxy: ""
# https_proxy: ""
# HTTP_PROXY: ""
# HTTPS_PROXY: ""
image: labeltool.lite.backend:latest
restart: unless-stopped
networks:
- labeltool-lite-net
ports:
- "8000:80"
volumes:
- "./data/training-data:/training-data"
labeltool-lite-frontend:
build:
context: ./frontend
dockerfile: ./Dockerfile
# args:
# http_proxy: ""
# https_proxy: ""
# HTTP_PROXY: ""
# HTTPS_PROXY: ""
image: labeltool.lite.frontend:latest
restart: unless-stopped
networks:
- labeltool-lite-net
ports:
- "8081:80"
depends_on:
- labeltool-lite-backend
labeltool-lite-inference:
build:
context: ./inference
dockerfile: Dockerfile
# args:
# http_proxy: ""
# https_proxy: ""
# HTTP_PROXY: ""
# HTTPS_PROXY: ""
image: labeltool.lite.inferance:latest
networks:
- labeltool-lite-net
volumes:
- "./data/inference-data/models:/models"
- "./data/inference-data/models_hash:/models_hash"
networks:
labeltool-lite-net: