mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-11-02 02:54:40 +00:00
26 lines
508 B
YAML
26 lines
508 B
YAML
version: "3.7"
|
|
services:
|
|
mysql:
|
|
extends:
|
|
file: docker-compose-no-es.yml
|
|
service: mysql
|
|
|
|
tugraph:
|
|
extends:
|
|
file: docker-compose-no-es.yml
|
|
service: tugraph
|
|
|
|
elasticsearch:
|
|
image: elasticsearch:8.5.3
|
|
container_name: test-openspg-elasticsearch
|
|
ports:
|
|
- "9200:9200"
|
|
- "9300:9300"
|
|
environment:
|
|
- discovery.type=single-node
|
|
- xpack.security.enabled=false
|
|
|
|
|
|
|
|
|