thelabdude commented on pull request #1769:
URL: https://github.com/apache/lucene-solr/pull/1769#issuecomment-678429788


   Looking great @HoustonPutman ! I ran `g assemble` and then launched the 
Docker image using a compose file:
   ```
   version: '3.2'
   services:
   
     zookeeper:
       image: zookeeper:3.5.8
       ports:
         - "2181:2181"
   
     solr:
       image: apache/solr:9.0.0-SNAPSHOT
       depends_on:
         - zookeeper
       ports:
         - "8983:8983"
       environment:
         SOLR_JETTY_HOST: "0.0.0.0"
       command: ["solr-foreground", "-z", "zookeeper:2181", "-c"]
   ```
   Note the need to set SOLR_JETTY_HOST to bind to all interfaces in the 
container if you want to expose Solr to your local workstation. Still kicking 
the tires but looking great so far.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to