X-Git-Url: http://git.ipfire.org/?p=people%2Fjschlag%2Fpbs-docker.git;a=blobdiff_plain;f=src%2Fpbs-hub%2Fbuild.sh;h=505517c03a894d91624b468ffee05fb4851f63c3;hp=b473ceb1f2385000209572709aee0073fc747602;hb=7b42fa88796339db4d0de040fdc06e3500eb63f3;hpb=881d45dced27c8cbef8d26c92c0db5466ebe5d50 diff --git a/src/pbs-hub/build.sh b/src/pbs-hub/build.sh index b473ceb..505517c 100755 --- a/src/pbs-hub/build.sh +++ b/src/pbs-hub/build.sh @@ -6,7 +6,7 @@ . /usr/lib/docker-shell-scripts-lib/install.sh ### -### Build the pbs Dockerimage +### Build the pbs-hub Dockerimage ### ### preparation ### @@ -15,13 +15,10 @@ # check for all necessary files -CheckForFile "setup-org.sh" CheckForFile "Dockerfile" -#create a work copy of setup.sh -cp setup-org.sh setup.sh ### paramter for mariadb build -repo="ipfire-pbs" +repo="ipfire-pbs-hub" dockertag="new" username=jonatanschlag tag="${username}/${repo}:${dockertag}" @@ -33,5 +30,4 @@ back=$(tag-image "${username}/${repo}") if [ "error" = "$back" ]; then echo "Tagging was not successful" fi -rm -f setup.sh )