Re: geode docker question

2020-07-08 Thread Joris Melchior
You might also want to look at docker compose so that locator and server can run in separate containers. On 2020-07-08, 12:18 AM, "Mark Hanson" wrote: Here is a command that actually runs.. You need to be in the Geode directory, the run the command below to start everything. d

Re: geode docker question

2020-07-07 Thread Mark Hanson
Here is a command that actually runs.. You need to be in the Geode directory, the run the command below to start everything. docker run -it -v $(pwd):/apache-geode openjdk:8 sh -c "apache-geode/bin/gfsh -e 'start locator --name=Locator1' -e 'start server --name=Server1'" -c "" Thanks, Mark

Re: geode docker question

2020-07-07 Thread Bill Burcham
Great (and timely) question Barry! And great answers from Mark and John. The question is timely because we recently addressed some similar needs in the development of the new Dockerized acceptance tests for the new TLS SNI features. I've taken a stab at a tutorial that leverages some of those idea

Re: geode docker question

2020-07-07 Thread John Blum
Hi Barry- Have a look at this... https://docs.spring.io/spring-boot-data-geode-build/1.3.x/reference/html5/#geode-docker I recently put this together as part of the SBDG 1.3 GA release. It contains references to other pertinent documentation as well. There aren't any pre-canned Docker Images

Re: geode docker question

2020-07-07 Thread Mark Hanson
Hi Barry, Are you looking for something like this? docker run -it -v $(pwd):/apache_geode openjdk:8 sh -c "apache-geode/bin/gfsh -e "start locator --name=Locator1" -e "start server --name=Server1" ^ shared location ^ not sure this pat