-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
magnus anatolius
committed
Mar 17, 2020
1 parent
ff2a91e
commit c63e9f8
Showing
11 changed files
with
27 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
#!/bin/bash | ||
|
||
sh ./gatekeeper/build.sh | ||
if [$1 -eq ""] | ||
then | ||
set "id_ed25519" | ||
fi | ||
|
||
sh ./gatekeeper/build.sh $1 | ||
wait | ||
echo "gatekeeper image Successfully built" | ||
sh ./keycloak/build.sh | ||
sh ./keycloak/build.sh $1 | ||
wait | ||
echo "keycloak image Successfully built" | ||
sh ./login/build.sh | ||
sh ./login/build.sh $1 | ||
wait | ||
echo "login image Successfully built" | ||
sh ./portal/build.sh | ||
sh ./portal/build.sh $1 | ||
wait | ||
echo "portal image Successfully built" | ||
sh ./postgresql/build.sh | ||
sh ./postgresql/build.sh $1 | ||
wait | ||
echo "postgresql image Successfully built" | ||
sh ./source.manager/build.sh | ||
sh ./source.manager/build.sh $1 | ||
echo "source.manager image Successfully built" | ||
wait | ||
sh ./doc/build.sh | ||
sh ./doc/build.sh $1 | ||
echo "doc image Successfully built" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
#!/bin/bash | ||
# sh ./build.sh id_rsa_insylva_docker | ||
if [$1 -eq ""] | ||
then | ||
set "id_rsa_insylva_docker" | ||
fi | ||
|
||
while [ "$1" != "" ]; do | ||
SSH_KEY=$(cat ~/.ssh/$1) | ||
SSH_KEY_PASSPHRASE=$(cat ~/.ssh/$1.pub) | ||
# Shift all the parameters down by one | ||
shift | ||
done | ||
# --no-cache | ||
|
||
docker build --no-cache --build-arg SSH_KEY="$SSH_KEY" --build-arg SSH_KEY_PASSPHRASE="$SSH_KEY_PASSPHRASE" --tag in-sylva.gatekeeper ./gatekeeper/. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
REACT_APP_IN_SYLVA_GATEKEEPER_HOST=/gatekeeper | ||
REACT_APP_IN_SYLVA_SOURCE_MANAGER_HOST=/source-manager | ||
REACT_APP_IN_SYLVA_KEYCLOAK_HOST=/keycloak | ||
REACT_APP_IN_SYLVA_CLIENT_ID=in-sylva.user.app | ||
REACT_APP_IN_SYLVA_CLIENT_ID=data | ||
REACT_APP_IN_SYLVA_GRANT_TYPE=password | ||
REACT_APP_IN_SYLVA_REALM=in-sylva | ||
REACT_APP_PORT=3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# ex: sh ./build.sh id_rsa_insylva_docker | ||
|
||
if [$1 -eq ""] | ||
then | ||
set "id_rsa_insylva_docker" | ||
fi | ||
|
||
while [ "$1" != "" ]; do | ||
SSH_KEY=$(cat ~/.ssh/$1) | ||
SSH_KEY_PASSPHRASE=$(cat ~/.ssh/$1.pub) | ||
# Shift all the parameters down by one | ||
shift | ||
done | ||
# --no-cache | ||
docker build --build-arg SSH_KEY="$SSH_KEY" --build-arg SSH_KEY_PASSPHRASE="$SSH_KEY_PASSPHRASE" --tag in-sylva.portal ./portal/. | ||
|
||
docker build --no-cache --build-arg SSH_KEY="$SSH_KEY" --build-arg SSH_KEY_PASSPHRASE="$SSH_KEY_PASSPHRASE" --tag in-sylva.portal ./portal/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
# Benjamin | ||
|
||
docker build --no-cache -t in-sylva.postgres ./postgresql/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters