-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
the images are pushed to dockerhub. Docker compose is not building an…
…y images anymore
- Loading branch information
Showing
3 changed files
with
15 additions
and
22 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
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,13 @@ | ||
#!/usr/bin/env bash | ||
# This script must be built on a linux machine | ||
|
||
# DeepKnee REST microservice images | ||
docker build -t miptmloulu/deepknee:gpu -f docker/Dockerfile.gpu . | ||
docker build -t miptmloulu/deepknee:cpu -f docker/Dockerfile.cpu . | ||
docker build --build-arg REACT_APP_BROKER_PORT=5002 -t miptmloulu/deepknee:ui -f docker/UIDockerfile deepknee-frontend | ||
docker build -t miptmloulu/deepknee:broker -f docker/BrokerDockerfile deepknee-backend-broker | ||
|
||
# Frontend and Backend | ||
docker push miptmloulu/deepknee:cpu && docker push miptmloulu/deepknee:gpu | ||
docker push miptmloulu/deepknee:broker && docker push miptmloulu/deepknee:ui | ||
|
||
# Frontend and Backend broker |