Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeRDark
titleStart the OpenCGA container loading demo data
$ docker run --name demo -e load=true -d opencb/opencga-demo:1.4.1

User can also mount customise directories to store MongoDB and Solr data for ease. The following command will mount the ~/data/mongodb and ~/data/solr directories from host machine to inside container at "/data/opencga/mongodb", "/data/opencga/mongodb" respectively.

Code Block
languagebash
themeRDark
titleStart the OpenCGA container loading demo data
$ docker run --name demo -v ~/data/mongodb:/data/opencga/mongodb -v ~/data/solr:/data/opencga/solr -d opencb/opencga-demo:1.4.1

You can connect to the OpenCGA demo container using the following command:

...