-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.yml
102 lines (102 loc) · 2.86 KB
/
development.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: '3'
services:
apigateway:
build:
context: ../schani_apigateway
dockerfile: Dockerfile.dev
ports:
- "8107:8000"
volumes:
- ../schani_apigateway/target/debug:/schani_apigateway
auth:
build:
context: ../schani_auth
dockerfile: Dockerfile.dev
ports:
- "8105:8000"
volumes:
- ../schani_auth/target/debug:/schani_auth
image_recognition:
build:
context: ../schani_image_recognition
dockerfile: Dockerfile.dev
environment:
- "SCRIPT_LOCATION=/tensorflow_models/tutorials/image/imagenet"
ports:
- "8106:8000"
volumes:
- ../schani_image_recognition/tensorflow_models:/tensorflow_models
- ../schani_image_recognition/target/debug:/schani_image_recognition
import:
build:
context: ../schani_import
dockerfile: Dockerfile.dev
ports:
- "8100:8000"
volumes:
- ../schani_import/target/debug:/schani_import
import_db:
ports:
- "54321:5432"
import_migration:
volumes:
- ../schani_import:/schani_import
processor:
build:
context: ../schani_processor
dockerfile: Dockerfile.dev
ports:
- "8101:8000"
volumes:
- ../schani_processor/target/debug:/schani_processor
environment:
- "RUST_LOG=info"
store:
build:
context: ../schani_store
dockerfile: Dockerfile.dev
ports:
- "8102:8000"
volumes:
- ../schani_store/target/debug:/schani_store
- ./data/store_data:/schani_store_data
environment:
- "FILE_STORAGE_PATH=/schani_store_data"
store_db:
ports:
- "54324:5432"
store_migration:
volumes:
- ../schani_store:/schani_store
uploader:
build:
context: ../schani_uploader
dockerfile: Dockerfile.dev
env_file: '.env'
ports:
- "8103:8000"
volumes:
- ../schani_uploader/target/debug:/schani_uploader
userinfo:
build:
context: ../schani_userinfo
dockerfile: Dockerfile.dev
ports:
- "8104:8000"
volumes:
- ../schani_userinfo/target/debug:/schani_userinfo
userinfo_migration:
volumes:
- ../schani_userinfo:/schani_userinfo
userinfo_db:
ports:
- "54323:5432"
web:
build:
context: ../schani_web
dockerfile: Dockerfile.dev
ports:
- "8108:8000"
volumes:
- ../schani_web/target/debug:/schani_web
- ../schani_web/static:/static