password moved from hard coded values to environment properties
[portal.git] / portal-BE / build.sh
index 6895338..2d1a442 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/bash
 
+export spring_datasource_username=portal
+export spring_datasource_password=Test123456
+
 mvn clean install
 docker build -t portal_app .
-docker-compose up
+docker-compose up
\ No newline at end of file