Re: Could not alias [g] to [g] as [g]
Yamiteru XYZ <yamit...@...>
This is my docker-compose.yml
toggle quoted message
Show quoted text
version: "3" services: graph: image: janusgraph/janusgraph:0.5.2 environment: JANUS_PROPS_TEMPLATE: cassandra-es janusgraph.storage.backend: cql janusgraph.storage.hostname: db janusgraph.index.search.hostname: index ports: - "8182:8182" - "8184:8184" depends_on: - db - index db: image: scylladb/scylla:4.2.1 ports: # REST API - "10000:10000" # CQL - "9042:9042" # Thrift - "9160:9160" # Internode - "7000:7000" - "7001:7001" # JMX - "7199:7199" # Prometheus - "9180:9180" - "9100:9100" volumes: - ./data/db/data:/var/lib/db index: image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0 environment: - discovery.type=single-node - http.host=0.0.0.0 - transport.host=127.0.0.1 ports: - "9200:9200" - "9300:9300" volumes: - ./data/index/data:/usr/share/index/data On Tuesday, January 5, 2021 at 2:33:55 PM UTC+1 HadoopMarc wrote:
|
|