HugeGraph容器快速部署使用
HugeGraph 是一套全栈图系统覆盖 图数据库、图计算 与 图 AI。支持从数据存储、实时查询到离线分析的完整图数据处理能力并支持 Gremlin 与 Cypher 查询语言。源码访问地址https://github.com/apache/hugegraphclient-api文档https://hugegraph.apache.org/docs/quickstart/hugegraph-client/为了广大使用者的方便今天附上docker-compose版本27.0直接启动的方法1新建docker-compose.yml文件内容如下services: server: image: hugegraph/hugegraph:1.5.0 container_name: hugegraph_server environment: - PRELOADtrue # PRELOAD is a option to preload a build-in sample graph when initializing. # - PASSWORD123456 # PASSWORD is an option to enable auth mode with the password you set. ports: - 8080:8080 hubble: image: hugegraph/hubble:1.5.0 container_name: hugegraph_hubble ports: - 8088:8088如果docker-compose的版本较低记得加上version。2启动命令docker-compose -f docker-compose.yml up -d(3)验证swagger-ui访问 http://localhost:8080/swagger-ui/index.html管理端访问 http://localhost:8088/