version: '3.3' services: grover: image: ${IMAGE_NAME}:${IMAGE_VERSION} build: context: . dockerfile: Dockerfile container_name: ${CONTAINER_NAME} restart: always ports: - ${LOCAL_PORT}:${NODE_PORT} environment: - NODE_ENV= ${NODE_ENV} - NODE_PORT= ${NODE_PORT} elasticsearch: image: ${ES_IMAGE_NAME}:${ES_IMAGE_VERSION} build: context: . dockerfile: Dockerfile container_name: ${ES_CONTAINER_NAME} environment: - xpack.security.enabled=false - discovery.type=single-node