diff --git a/docker/coturn/CHANGELOG.md b/docker/coturn/CHANGELOG.md index 54ae367..700f59d 100644 --- a/docker/coturn/CHANGELOG.md +++ b/docker/coturn/CHANGELOG.md @@ -4,13 +4,27 @@ Coturn TURN server Docker image changelog +## [4.6.0-r0] · 2022-08-13 +[4.6.0-r0]: /../../tree/docker/4.6.0-r0 + +### Upgraded + +- [Coturn] 4.6.0: + +### Security updated + +- [Debian Linux] "bullseye" 20220912: + + + + ## [4.5.2-r14] · 2022-08-10 [4.5.2-r14]: /../../tree/docker/4.5.2-r14 ### Security updated - [Alpine Linux] 3.16.2: -- [Debian] "bullseye" 20220801: +- [Debian Linux] "bullseye" 20220801: @@ -21,7 +35,7 @@ Coturn TURN server Docker image changelog ### Security updated - [Alpine Linux] 3.16.1: -- [Debian] "bullseye" 20220622: +- [Debian Linux] "bullseye" 20220622: @@ -35,7 +49,7 @@ Coturn TURN server Docker image changelog ### Security updated -- [Debian] "bullseye" 20220509: +- [Debian Linux] "bullseye" 20220509: @@ -56,7 +70,7 @@ Coturn TURN server Docker image changelog ### Security updated - [Alpine Linux] 3.15.3: -- [Debian] "bullseye" 20220328: +- [Debian Linux] "bullseye" 20220328: @@ -67,7 +81,7 @@ Coturn TURN server Docker image changelog ### Security updated - [Alpine Linux] 3.15.2: -- [Debian] "bullseye" 20220316: +- [Debian Linux] "bullseye" 20220316: diff --git a/docker/coturn/Makefile b/docker/coturn/Makefile index d0f232f..bd23c98 100644 --- a/docker/coturn/Makefile +++ b/docker/coturn/Makefile @@ -17,11 +17,11 @@ eq = $(if $(or $(1),$(2)),$(and $(findstring $(1),$(2)),\ # Project parameters # ###################### -COTURN_VER ?= 4.5.2 +COTURN_VER ?= 4.6.0 COTURN_MIN_VER = $(strip $(shell echo $(COTURN_VER) | cut -d '.' -f1,2)) COTURN_MAJ_VER = $(strip $(shell echo $(COTURN_VER) | cut -d '.' -f1)) -BUILD_REV ?= 14 +BUILD_REV ?= 0 NAMESPACES := coturn \ ghcr.io/coturn \ diff --git a/docker/coturn/README.md b/docker/coturn/README.md index 2d7cf66..24d03d3 100644 --- a/docker/coturn/README.md +++ b/docker/coturn/README.md @@ -15,8 +15,8 @@ Coturn TURN server Docker image ## Supported tags and respective `Dockerfile` links -- [`4.5.2-r14`, `4.5.2-r14-debian`, `4.5.2`, `4.5.2-debian`, `4.5`, `4.5-debian`, `4`, `4-debian`, `debian`, `latest`][d1] -- [`4.5.2-r14-alpine`, `4.5.2-alpine`, `4.5-alpine`, `4-alpine`, `alpine`][d2] +- [`4.6.0-r0`, `4.6.0-r0-debian`, `4.6.0`, `4.6.0-debian`, `4.6`, `4.6-debian`, `4`, `4-debian`, `debian`, `latest`][d1] +- [`4.6.0-r0-alpine`, `4.6.0-alpine`, `4.6-alpine`, `4-alpine`, `alpine`][d2] diff --git a/docker/coturn/alpine/Dockerfile b/docker/coturn/alpine/Dockerfile index 3f716a9..64f93e3 100644 --- a/docker/coturn/alpine/Dockerfile +++ b/docker/coturn/alpine/Dockerfile @@ -131,9 +131,7 @@ RUN if [ "${coturn_git_ref}" != 'HEAD' ]; then true \ && true; fi # Build Coturn from sources. -# TODO: Remove this symlink with next Coturn release detecting MySQL libs correctly. -RUN ln -s /usr/lib/pkgconfig/libmariadb.pc /usr/lib/pkgconfig/mariadb.pc \ - && ./configure --prefix=/usr \ +RUN ./configure --prefix=/usr \ --turndbdir=/var/lib/coturn \ --disable-rpath \ --sysconfdir=/etc/coturn \ diff --git a/docker/coturn/debian/Dockerfile b/docker/coturn/debian/Dockerfile index c3b4384..0807b40 100644 --- a/docker/coturn/debian/Dockerfile +++ b/docker/coturn/debian/Dockerfile @@ -128,10 +128,6 @@ RUN if [ "${coturn_git_ref}" != 'HEAD' ]; then true \ && git fetch --depth=1 origin "${coturn_git_ref}" \ && git checkout FETCH_HEAD \ && true; fi -# TODO: Remove `OSLIBS` line with next Coturn release having it in `configure`. -RUN if [ "${coturn_git_ref}" = '4.5.2' ]; then true \ - && sed -i -e '850i\OSLIBS="$\{OSLIBS\} -latomic"' ./configure \ - && true; fi # Build Coturn from sources. RUN ./configure --prefix=/usr \