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

@@ -23,8 +23,8 @@ RUN apk add --no-cache curl \
su-exec
### phpBB
ENV PHPBB_VERSION 3.1.10
ENV PHPBB_SHA256 '198fda1a0bd833d42e0d4f4fe26a47d656a6e087ed9a561e06b0940de131a22c'
ENV PHPBB_VERSION 3.1.11
ENV PHPBB_SHA256 '12a2b4644508757717643d115e7991a1ed5438e6f80e0be47295b11cc37aeb02'
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.1,3.1-apache}; do
for tag in {3.1,3.1.11,3.1-apache,3.1.11-apache}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done