-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.override.yml
52 lines (45 loc) · 1.04 KB
/
docker-compose.override.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
version: '3'
services:
sds_indexer:
volumes:
- ./src:/app/
command: uvicorn esds.indexer:app --host 0.0.0.0 --port 8000 --reload
sds_retriever:
volumes:
- ./src:/app/
command: uvicorn esds.retriever:app --host 0.0.0.0 --port 8000 --reload
sds_collector:
volumes:
- ./src:/app/
command: python -m esds.collector.main --reload
network_mode: "host"
elasticsearch:
volumes:
- esdata:/usr/share/elasticsearch/data
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: "docker.elastic.co/kibana/kibana:8.15.2"
container_name: kibana
ports:
- "5601:5601"
expose:
- "5601"
test_ioc:
build: "."
image: sds
command: python -m test_ioc.pva_server 5 10
volumes:
- ./tests/test_ioc/:/app/test_ioc/
network_mode: "host"
test_ioc_types:
build: "."
image: sds
command: python -m test_ioc.pva_server_multi_type
volumes:
- ./tests/test_ioc/:/app/test_ioc/
network_mode: "host"
volumes:
esdata:
driver: local