Revert "ES as separate server"

This reverts commit 3536be8
This commit is contained in:
Kuroshini 2019-11-18 18:03:21 +03:00
parent 3536be8394
commit f81e879ae4
2 changed files with 1 additions and 22 deletions

View File

@ -1,21 +0,0 @@
version: '3.5'
services:
elasticsearch:
image: elasticsearch:7.3.1
volumes:
- gm-esdata:/usr/share/elasticsearch/data
hostname: elasticsearch
network_mode: 'host'
environment:
- "ES_JAVA_OPTS=-Xms4g -Xmx4g"
- discovery.type=single-node
- xpack.security.enabled=false
restart: always
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
mem_limit: 4g

View File

@ -21,7 +21,7 @@ DOMAIN_URI = 'gm.id-east.ru'
# ELASTICSEARCH SETTINGS
ELASTICSEARCH_DSL = {
'default': {
'hosts': '188.68.209.124:9200'
'hosts': 'localhost:9200'
# 'hosts': 'elasticsearch:9200'
}
}