1
0
Fork 0
This repository has been archived on 2025-01-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
devops-with-docker/Part3/Exercise04/builder.sh
2023-03-17 12:43:43 +02:00

6 lines
143 B
Bash
Executable file

#!/bin/sh
git clone https://github.com/$1.git ./repo
cd ./repo
docker build . -t $2
docker login -u $DOCKER_USER -p $DOCKER_PWD
docker push $2