diff --git a/docker-compose.yml b/docker-compose.yml index 34bc7118..82cd44ca 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,22 +1,5 @@ version: "3.5" services: - elasticsearch: - container_name: temporal-elasticsearch - environment: - - cluster.routing.allocation.disk.threshold_enabled=true - - cluster.routing.allocation.disk.watermark.low=512mb - - cluster.routing.allocation.disk.watermark.high=256mb - - cluster.routing.allocation.disk.watermark.flood_stage=128mb - - discovery.type=single-node - - ES_JAVA_OPTS=-Xms256m -Xmx256m - - xpack.security.enabled=false - image: elasticsearch:${ELASTICSEARCH_VERSION} - networks: - - temporal-network - expose: - - 9200 - volumes: - - /var/lib/elasticsearch/data postgresql: container_name: temporal-postgresql environment: @@ -33,7 +16,6 @@ services: container_name: temporal depends_on: - postgresql - - elasticsearch environment: - DB=postgres12 - DB_PORT=5432 @@ -41,7 +23,7 @@ services: - POSTGRES_PWD=temporal - POSTGRES_SEEDS=postgresql - DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development-sql.yaml - - ENABLE_ES=true + - ENABLE_ES=false - ES_SEEDS=elasticsearch - ES_VERSION=v7 - TEMPORAL_ADDRESS=temporal:7233