Tommu10ve commented on issue #2768:
URL:
https://github.com/apache/incubator-hugegraph/issues/2768#issuecomment-2897725230
镜像版本设置为 hugegraph/hugegraph:1.5.0 和 cassandra:3.11.19 能正常构建
```
version: "3"
services:
server:
image: hugegraph/hugegraph:1.5.0
container_name: cas-server
ports:
- 8080:8080
environment:
# PRELOAD: true
hugegraph.backend: cassandra
hugegraph.serializer: cassandra
hugegraph.cassandra.host: cas-cassandra
hugegraph.cassandra.port: 9042
# volumes:
# -
/data/graph/hugeGraph/example.groovy:/hugegraph/scripts/example.groovy
networks:
- ca-network
depends_on:
- cassandra
healthcheck:
test: ["CMD", "bin/gremlin-console.sh", "--" ,"-e",
"scripts/remote-connect.groovy"]
interval: 10s
timeout: 30s
retries: 3
cassandra:
image: cassandra:3.11.19
container_name: cas-cassandra
ports:
- 7000:7000
- 9042:9042
security_opt:
- seccomp:unconfined
networks:
- ca-network
healthcheck:
test: ["CMD", "cqlsh", "--execute", "describe keyspaces;"]
interval: 10s
timeout: 30s
retries: 5
hubble:
image: hugegraph/hubble:1.5.0
container_name: hubble
ports:
- 8088:8088
networks:
ca-network:
volumes:
hugegraph-data:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]