From: Michał T. L. <m.t...@gm...> - 2019-07-28 00:11:17
|
Hi, I tried to install ElasticSearch plugin ( https://github.com/elsiklab/jbrowse_elasticsearch ) into Apollo. With the following steps: 1. git clone https://github.com/GMOD/Apollo.git 2. cd Apollo 3. I added ElasticSearch to `cat docker-files/docker-apollo-config.groovy` *```jbrowse { git { url = "https://github.com/GMOD/jbrowse" branch = "1.16.4-release" } plugins { ... ElasticSearch{ git = 'https://github.com/elsiklab/jbrowse_elasticsearch' branch = 'master' alwaysRecheck = "true" alwaysPull = "true" } }}* ``` Next, I executed *```docker build -t apollo .docker run -it -v "$(pwd)"/mydata:/data -p 8888:8080 -p 8080:3000 apollo```* - http://localhost:8080/ does not work for elasticsearch - http://localhost:8888/ only Apollo works without elasticsearch What did I miss? Thank you in advance, Michal |