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
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
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, anddocker load
to import the image back into docker.