-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from IBM-Cloud/ui-2.0
Ui 2.0
- Loading branch information
Showing
17 changed files
with
1,074 additions
and
340 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
# declare an array called array and define 3 vales | ||
declare -a folders=( "frontend" "backend" "jobs" ) | ||
for folder in "${folders[@]}" | ||
do | ||
echo $folder | ||
cd $folder | ||
if [ $folder == "jobs" ] | ||
then | ||
docker build . -t ibmcom/backend-job && docker push ibmcom/backend-job | ||
else | ||
docker build . -t ibmcom/$folder && docker push ibmcom/$folder | ||
fi | ||
cd .. | ||
done |
Oops, something went wrong.