]> git.ipfire.org Git - people/jschlag/pbs-docker.git/blobdiff - src/pbs-hub/build.sh
Refactoring the structure of our images
[people/jschlag/pbs-docker.git] / src / pbs-hub / build.sh
index b473ceb1f2385000209572709aee0073fc747602..505517c03a894d91624b468ffee05fb4851f63c3 100755 (executable)
@@ -6,7 +6,7 @@
 . /usr/lib/docker-shell-scripts-lib/install.sh
 
 ###
-### Build the pbs Dockerimage
+### Build the pbs-hub Dockerimage
 ###
 
 ### preparation ###
 
 # 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
 )