Backend/docker-compose.yaml
2022-07-30 03:48:21 +03:00

25 lines
575 B
YAML

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