-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
324cf6c
commit 7c4c384
Showing
5 changed files
with
85 additions
and
188 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# call ./tq_backend/build_push_backend_docker_image.sh to build and push backend image | ||
echo "Building backend Docker image..." | ||
if [ -d "tq_backend" ]; then | ||
cd tq_backend | ||
./build_backend_docker_image.sh | ||
cd .. | ||
echo "Backend Docker image built." | ||
else | ||
echo "Error: tq_backend directory not found." | ||
exit 1 | ||
fi | ||
# call ./tq_backend/build_backend_docker_image.sh to build backend image | ||
./tq_backend/build_backend_docker_image.sh | ||
|
||
# call ./tq_frontend/build_push_frontend_desktop_docker_image.sh to build and push frontend desktop image | ||
echo "Building frontend desktop Docker image..." | ||
if [ -d "tq_frontend" ]; then | ||
cd tq_frontend | ||
./build_frontend_desktop_docker_image.sh | ||
cd .. | ||
echo "Frontend desktop Docker image built." | ||
else | ||
echo "Error: tq_frontend directory not found." | ||
exit 1 | ||
fi | ||
# call ./tq_frontend/build_frontend_desktop_docker_image.sh to build frontend desktop image | ||
./tq_frontend/build_frontend_desktop_docker_image.sh | ||
|
||
# call ./tq_frontend/build_push_frontend_web_light_docker_image.sh to build and push frontend web light image | ||
echo "Building frontend web light Docker image..." | ||
if [ -d "tq_frontend" ]; then | ||
cd tq_frontend | ||
./build_frontend_web_light_docker_image.sh | ||
cd .. | ||
echo "Frontend web light Docker image built." | ||
else | ||
echo "Error: tq_frontend directory not found." | ||
exit 1 | ||
fi | ||
# call ./tq_frontend/build_frontend_web_docker_image.sh to build frontend web image | ||
./tq_frontend/build_frontend_web_docker_image.sh | ||
|
||
# call ./reverse-proxy/build_push_backend_docker_image.sh to build and push backend image | ||
echo "Building reverse-proxy Docker image..." | ||
if [ -d "reverse-proxy" ]; then | ||
cd reverse-proxy | ||
./build_reverse_proxy_docker_image.sh | ||
cd .. | ||
echo "Reverse proxy Docker image built." | ||
else | ||
echo "Error: reverse-proxy directory not found." | ||
exit 1 | ||
fi | ||
# call ./reverse_proxy/build_reverse_proxy_docker_image.sh to build reverse proxy image | ||
./reverse_proxy/build_reverse_proxy_docker_image.sh |
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