openkbs/cassandra
##Components:
docker pull openkbs/cassandra
Token authentication is enabled. You need to open the notebook server with its first-time login token in the URL, or enable a password in order to gain access. The command:
jupyter notebook list
will show you the URLs of running servers with their tokens, which you can copy and paste into your browser. For example:
Currently running servers:
http://localhost:8888/?token=c8de56fa... :: /Users/you/notebooks
Or you can paste just the token value into the password field on this page.
Cookies are required for authenticated access to notebooks.
host/port=> 0.0.0.0:18888 login/passwd=> (see above)
FROM openkbs/cassandra
Then, you're ready to run:
mkdir ./data
docker run -d --name my-cassandra -p 18888:8888 openkbs/cassandra
Say, you will build the image "my/cassandra".
docker build -t my/cassandra .
To run your own image, say, with some-cassandra:
mkdir ./data
docker run -d --name some-cassandra -p 18888:88882 my/cassandra
docker exec -it some-cassandra /bin/bash
docker pull openkbs/cassandra