Bump phpBB to 3.2.1 and 3.1.11

This commit is contained in:
selim13
2017-07-17 11:40:45 +03:00
parent 44ba803353
commit 531efeb920
4 changed files with 6 additions and 6 deletions

View File

@@ -24,8 +24,8 @@ RUN apk add --no-cache curl \
su-exec
### phpBB
ENV PHPBB_VERSION 3.2.0
ENV PHPBB_SHA256 '610d960b6e050b205b7248dea366c63bf1feee0551170c75fa4ecbacd5213a0d'
ENV PHPBB_VERSION 3.2.1
ENV PHPBB_SHA256 'ea1c7e08aa3466aa325deca5d8998a24d103bfecf23826ce61fe5390b6a09f71'
WORKDIR /tmp

View File

@@ -7,7 +7,7 @@ tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}
# Tag and push image for each additional tag
for tag in {3,3.2,3-apache,3.2-apache,apache,latest}; do
for tag in {3,3.2,3.2.1,3-apache,3.2-apache,3.2.1-apache,apache,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done