summaryrefslogtreecommitdiffstats
path: root/portal-BE/build.sh
diff options
context:
space:
mode:
authorDominik Mizyn <d.mizyn@samsung.com>2019-10-16 13:42:19 +0200
committerDominik Mizyn <d.mizyn@samsung.com>2019-10-16 13:42:46 +0200
commit44d465b4604a7e73494efb2755dd05acf9d5ef7d (patch)
tree34aca7dea7bf7075ae15e08ca574f994e899708d /portal-BE/build.sh
parent701fad2486d1e8b3730dbb175ad81a4381dece41 (diff)
password moved from hard coded values to environment properties
password moved from hard coded values to environment properties Issue-ID: PORTAL-710 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> Change-Id: I13f2fd2f832af5eb99426082f4a1aa620ce94974 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com>
Diffstat (limited to 'portal-BE/build.sh')
-rwxr-xr-xportal-BE/build.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/portal-BE/build.sh b/portal-BE/build.sh
index 68953384..2d1a4426 100755
--- a/portal-BE/build.sh
+++ b/portal-BE/build.sh
@@ -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