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
/github.com/spring-projects/spring-test-data-geode/issues/19) > by myself and David Turanski. > > Some early experimentation has already taken place. > > Regards, > John > > > > ____ > From: Barry Barrios > Sent: Tuesday, July 7, 202

Re: geode docker question

2020-07-07 Thread John Blum
and David Turanski. Some early experimentation has already taken place. Regards, John From: Barry Barrios Sent: Tuesday, July 7, 2020 10:26 AM To: dev@geode.apache.org Subject: geode docker question Do you have Apache Geode examples using docker? Is there

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

geode docker question

2020-07-07 Thread Barry Barrios
Do you have Apache Geode examples using docker? Is there a way to run a docker container that automatically creates locator and server by specifying some parameters without typing them in the gfsh shell prompt? Also, same for deploying jars, is there a way to automatically deploy jars when running