You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this docker file for my project, and I've noticed some the docker image versions are a bit outdated.
Currently it looks like:
# Copyright 2023 JanusGraph Authors## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.version: "3"services:
janusgraph:
image: docker.io/janusgraph/janusgraph:latestcontainer_name: jce-janusgraphenvironment:
JANUS_PROPS_TEMPLATE: cql-esjanusgraph.storage.hostname: jce-cassandrajanusgraph.index.search.hostname: jce-elasticports:
- "8182:8182"networks:
- jce-networkhealthcheck:
test: ["CMD", "bin/gremlin.sh", "-e", "scripts/remote-connect.groovy"]interval: 10stimeout: 30sretries: 3cassandra:
image: cassandra:3container_name: jce-cassandraports:
- "9042:9042"
- "9160:9160"networks:
- jce-networkelasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0container_name: jce-elasticenvironment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- "http.host=0.0.0.0"
- "network.host=0.0.0.0"
- "transport.host=127.0.0.1"
- "cluster.name=docker-cluster"
- "xpack.security.enabled=false"
- "discovery.zen.minimum_master_nodes=1"ports:
- "9200:9200"networks:
- jce-networknetworks:
jce-network:
volumes:
janusgraph-default-data:
I've tested cassandra:3.11.17 and elasticsearch:6.8.23 which works fine. In my project, I also add
So that it also runs a visualizer, which I use very often.
Ideally I want to use the latest versions of all the docker images, but not sure how to make them compatible. Can you tell me what I can do and make a PR?
Thank you.
The text was updated successfully, but these errors were encountered:
I use this docker file for my project, and I've noticed some the docker image versions are a bit outdated.
Currently it looks like:
I've tested
cassandra:3.11.17
andelasticsearch:6.8.23
which works fine. In my project, I also addSo that it also runs a visualizer, which I use very often.
Ideally I want to use the latest versions of all the docker images, but not sure how to make them compatible. Can you tell me what I can do and make a PR?
Thank you.
The text was updated successfully, but these errors were encountered: