Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
19 lines
417 B
YAML
19 lines
417 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: vulhub/unomi:1.5.1
|
|
ports:
|
|
- "9443:9443"
|
|
- "8181:8181"
|
|
environment:
|
|
- UNOMI_ELASTICSEARCH_ADDRESSES=elasticsearch:9200
|
|
depends_on:
|
|
- elasticsearch
|
|
elasticsearch:
|
|
image: elasticsearch:7.9.3
|
|
environment:
|
|
- cluster.name=contextElasticSearch
|
|
- discovery.type=single-node
|
|
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
|
|
- bootstrap.memory_lock=true
|