skip to Main Content

I have installed docker on redhat/centos server. docker services are running fine but how I can install or build cassandra/scylla image on docker. my server is not connected with internet so while building cassandra/scylla image or run then getting below error “Unable to find image” with timeout exception.

Can anyone help how to build cassandra/Scylla docker image without internet?

Thanks.

2

Answers


  1. The problem does not seem to be related to Apache Cassandra or Scylla.
    You do need access to Docker hub to download the relevant image for the first time, for example when running docker run hello-world

    Once you solve that, you can move to run Apache Cassandra or Scylla with, for example with

    docker run --name some-scylla -d scylladb/scylla
    
    Login or Signup to reply.
  2. Once you download the image though, it is very simple to take it offline and load it into an offline system using docker save to export the image as a file, and docker load to import the image back into docker.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search