You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by aw...@apache.org on 2020/04/18 05:26:51 UTC

[fineract] branch develop updated: remove JAVA_OPTS from docker-compose.yml (FINERACT-900) (#773)

This is an automated email from the ASF dual-hosted git repository.

awasum pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 005cc21  remove JAVA_OPTS from docker-compose.yml (FINERACT-900) (#773)
005cc21 is described below

commit 005cc2129aa8af92d381af0940b2934eb9f16de8
Author: Michael Vorburger ⛑️ <mi...@vorburger.ch>
AuthorDate: Sat Apr 18 07:26:45 2020 +0200

    remove JAVA_OPTS from docker-compose.yml (FINERACT-900) (#773)
---
 docker-compose.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/docker-compose.yml b/docker-compose.yml
index 80e1116..0469be5 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -43,7 +43,6 @@ services:
     depends_on:
       - fineractmysql
     environment:
-      - JAVA_OPTS=-Djava.awt.headless=true -XX:+UseG1GC -Dfile.encoding=UTF-8
       - DRIVERCLASS_NAME=org.drizzle.jdbc.DrizzleDriver
       - PROTOCOL=jdbc
       - SUB_PROTOCOL=mysql:thin
@@ -59,5 +58,5 @@ services:
 # https://issues.apache.org/jira/browse/FINERACT-762
 # To use an altnerative JDBC driver (which is faster, but not allowed to be default in Apache distribution)
 # replace org.drizzle.jdbc.DrizzleDriver with com.mysql.jdbc.Driver in DRIVERCLASS_NAME and fineract_tenants_driver,
-# and remove ":thin:" from PROTOCOL and fineract_tenants_url.  Note that the mysql-connector-java-*.jar is already
+# and remove ":thin:" from SUB_PROTOCOL and fineract_tenants_url.  Note that the mysql-connector-java-*.jar is already
 # bundled in the container by the Dockerfile, but just not used by default.