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