-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yaml
More file actions
35 lines (34 loc) · 962 Bytes
/
compose.yaml
File metadata and controls
35 lines (34 loc) · 962 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
x-common: &common
networks: [network]
restart: "no"
volumes: ["./data:/mnt/data"]
environment:
TZ: Europe/Moscow
ENV_FILE: /mnt/data/.env
networks: {network: {driver: bridge, name: "network-maestro-core"}}
services:
gateway:
build: {context: ./service--gateway}
image: maestro-core--gateway
ports: ['7731:7731']
<<: *common
chat-manager-examples:
build: {context: ./service--chat-manager-examples}
image: maestro-core--chat-manager-examples
ports: ['17231:17231']
<<: *common
llm-hub:
build: {context: ./service--llm-hub}
image: maestro-core--llm-hub
ports: ['40631:40631']
<<: *common
question-detector:
build: {context: ./service--question-detector}
image: maestro-core--question-detector
ports: ['31611:31611']
<<: *common
text-extractor:
build: {context: ./service--text-extractor}
image: maestro-core--text-extractor
ports: ['9681:9681']
<<: *common