Compare commits

..

2 Commits

Author SHA1 Message Date
b9715981e7 updated req 2023-11-07 13:38:43 +03:00
be9a5146c3 updated compose 2023-11-07 13:02:09 +03:00
3 changed files with 370 additions and 20 deletions

View File

@ -100,11 +100,16 @@ services:
command: /start-flower
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3 # Use the desired version
container_name: akarpov_local_elasticsearch
image: elasticsearch:7.17.14
container_name: elasticsearch
environment:
- discovery.type=single-node # This avoids bootstrap checks, suitable for development.
- ES_JAVA_OPTS=-Xms512m -Xmx512m # Set the JVM heap size
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- akarpov_local_elasticsearch_data:/usr/share/elasticsearch/data
ports:

376
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -109,6 +109,7 @@ textract = "^1.6.5"
uuid6 = "^2023.5.2"
fastapi = "0.86.0"
django-haystack = {extras = ["elasticsearch"], version = "^3.2.1"}
uvicorn = "^0.24.0.post1"
[build-system]