Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Commit

Permalink
Upgrade Coturn to 4.5.1.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Jan 29, 2019
1 parent 5a8f843 commit ba598d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' \
\
# Download and prepare Coturn sources
&& curl -fL -o /tmp/coturn.tar.gz \
https://github.com/coturn/coturn/archive/4.5.0.8.tar.gz \
https://github.com/coturn/coturn/archive/4.5.1.0.tar.gz \
&& tar -xzf /tmp/coturn.tar.gz -C /tmp/ \
&& cd /tmp/coturn-* \
\
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@


IMAGE_NAME := instrumentisto/coturn
VERSION ?= 4.5.0.8
TAGS ?= 4.5.0.8,4.5.0,4.5,4,latest
VERSION ?= 4.5.1.0
TAGS ?= 4.5.1.0,4.5.1,4.5,4,latest


comma := ,
Expand Down
2 changes: 1 addition & 1 deletion hooks/post_push
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tagStart=$(expr index "$IMAGE_NAME" :)
repoName=${IMAGE_NAME:0:tagStart-1}

# Tag and push image for each additional tag
for tag in {4.5.0.8,4.5.0,4.5,4,latest}; do
for tag in {4.5.1.0,4.5.1,4.5,4,latest}; do
docker tag $IMAGE_NAME ${repoName}:${tag}
docker push ${repoName}:${tag}
done

0 comments on commit ba598d1

Please sign in to comment.