ieugen commented on pull request #251:
URL: https://github.com/apache/ofbiz-framework/pull/251#issuecomment-760881172


   I don't have Windows to test that on.
   I just made similar changes to CLASSPATH.
   I read ofbiz.bat, saw how the CLASSPATH was used and added the same options.
   
   I did test on linux and you can test too using docker:
   I use these commands to run OFBiz on my Raspnerry PI with postgresql db 
running in another container. 
   
   ```
       # Data loading
       docker run --rm \
           --name ofbiz-netdava \
           --net=host \
           --volume 
/opt/ofbiz/entityengine.postgres.xml:/opt/ofbiz/config/entityengine.xml:ro \
           --volume 
/opt/ofbiz/security.properties:/opt/ofbiz/config/security.properties:ro \
           --volume ofbiz-netdava:/opt/ofbiz/runtime \
           ieugen/ofbiz:trunk-8 --load-data
   
       docker run --detach \
           --name ofbiz-netdava \
           --restart unless-stopped \
           --net=host \
           --volume 
/opt/ofbiz/entityengine.postgres.xml:/opt/ofbiz/config/entityengine.xml:ro \
           --volume 
/opt/ofbiz/security.properties:/opt/ofbiz/config/security.properties:ro \
           --volume ofbiz-netdava:/opt/ofbiz/runtime \
           ieugen/ofbiz:trunk-8
   ```


----------------------------------------------------------------
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


Reply via email to