Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

OpenCGA has published a "ready to run" docker image under "opencb/opencga-demo" repository for quick testing and playing without going through hassle to learn, wait and install each and every component of OpenCGA. Once user pull this image, he can immediately start running and using OpenCGA. This image contains the following components :

  1. OpenCGA binaries
  2. MongoDB 4.0
  3. Solr 6.6 ( default
  4. init script ( install catalog and start populate data)

Once user run opencga demo image, on first run, it will install catalog, load, annotate variant data from XXXXXX project and index into solr search engine and start REST server (on port 9090) by default. In case user don't wish to load data, just pass load=false option to instruct container to not load any data (user might be interested to load its own data instead of demo) . 


Run OpenCGA Demo (Default Load True)
docker run --name demo -d opencb/opencga-demo:1.4.1


Run OpenCGA Demo (Load False)
docker run --name demo -e load=false -d opencb/opencga-demo:1.4.1 

OpenCGA will listen on the following address :

OpenCGA REST Server
http://OpenCGA-Demo-Container-IP:9090/opencga/webservices/rest/v1/users/create

Solr Dashboard will be available on the following address: 

Solr Dashboard
http://OpenCGA-Demo-Container-IP:8983/solr

To connect with OpenCGA demo container : 

Connect OpenCGA Demo Container
docker exec -it demo bash
  • No labels