-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
69 lines (63 loc) · 1.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
version: 'v2.26.1'
services:
web_interface:
build: ./webInterface
volumes:
- type: bind
source: ./webInterface/src
target: /webInterface/src
#ports:
# - "80:3001"
networks:
- app_network
stix_and_vulnerability:
build:
context: ./stix&vulnerability
dockerfile: Dockerfile
args:
- AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY}
- AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT}
- AZURE_OPENAI_MODEL_ID=${AZURE_OPENAI_MODEL_ID}
env_file:
- .env
volumes:
- type: bind
source: ./stix&vulnerability
target: /stix&vulnerability
#ports:
# - "5002:5002"
networks:
- app_network
cvwelib:
build: ./cvwelib
volumes:
- type: bind
source: ./cvwelib
target: /cvwelib
#ports:
# - "5001:5001"
networks:
- app_network
capeclib:
build: ./capeclib
volumes:
- type: bind
source: ./capeclib
target: /capeclib
#ports:
# - "5003:5003"
networks:
- app_network
nginx:
build: ./nginx
ports:
- "8080:80"
networks:
- app_network
depends_on:
- web_interface
- stix_and_vulnerability
- cvwelib
networks:
app_network:
driver: bridge