forked from asizikov/cluster-guinea-pig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-image-push.sh
17 lines (13 loc) · 859 Bytes
/
git-image-push.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#scripts to push the images to github
docker build -t api:1.0 -f src/DynamicConfig.Storage.Api/Dockerfile .
docker tag api:1.0 ghcr.io/norbinto/api:1.0
docker push ghcr.io/norbinto/api:1.0
docker build -t client-service-a:1.0 -f src/clients/WorkerService.ServiceA/Dockerfile .
docker tag client-service-a:1.0 ghcr.io/norbinto/client-service-a:1.0
docker push ghcr.io/norbinto/client-service-a:1.0
docker build -t config-management-web:1.0 -f src/DynamicConfig.Management.Web/Dockerfile .
docker tag config-management-web:1.0 ghcr.io/norbinto/config-management-web:1.0
docker push ghcr.io/norbinto/config-management-web:1.0
docker build -t config-database-primer:1.0 -f src/clients/DatabasePrimer.Service/Dockerfile .
docker tag config-database-primer:1.0 ghcr.io/norbinto/config-database-primer:1.0
docker push ghcr.io/norbinto/config-database-primer:1.0