CacheBlocksExplorer now available in Docker
I have already mentioned my project CacheBlocksExplorer recently in two articles
- Internal Structure of Caché Database Blocks, Part 2

- Internal Structure of Caché Database Blocks, Part 3

Now I would like to inform that this project can be easily run with docker.
Version for Caché and for InterSystems IRIS, now publicly available on docker hub.
Remember that you need the appropriate license key (for RedHat Linux) to be able to run this project.
Caché
docker run -d --rm \ -p 8080:57772 \ -v ~/cache.key:/usr/cachesys/mgr/cache.key \ -v /some/your/cache/db:/opt/blocks/db/test \ daimor/blocksexplorer:cache
Where "/some/your/cache/db" is the path to your CACHE.DAT which you would like to analyze.
InterSystems IRIS
docker run -d --rm \ -p 8080:53772 \ -v ~/iris.key:/usr/irissys/mgr/iris.key \ -v /some/your/iris/db:/opt/blocks/db/test \ daimor/blocksexplorer:iris
Where "/some/your/iris/db" is the path to your IRIS.DAT which you would like to analyze.
After start, you can open it by link http://localhost:8080/blocks/
If you are going to the GLobalSummit 18, and would like to see the demo, you can find me there and I will demonstrate it to you.
Discussion (0)0