From 82fd456dc5be064b2014a2b19df040f511410a29 Mon Sep 17 00:00:00 2001 From: rainabba Date: Wed, 23 Mar 2016 01:23:55 -0700 Subject: [PATCH 1/2] Update README.md Add example to show how to use WOWZA_VERSION to upgrade from the version in :current. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cef9660..0fe9e51 100644 --- a/README.md +++ b/README.md @@ -79,12 +79,14 @@ docker run --name wowza -d --restart=always \ --publish 8087:8087 --publish 8088:8088 \ --env 'WOWZA_ACCEPT_LICENSE=yes' \ --env 'WOWZA_KEY=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx-xxxx' \ + --env 'WOWZA_VERSION=4.4.1' \ --volume /srv/docker/wowza/data:/var/lib/wowza \ --volume /srv/docker/wowza/log:/var/log/wowza \ - sameersbn/wowza:4.1.2-8 + sameersbn/wowza:current ``` **The `--env WOWZA_ACCEPT_LICENSE=yes` parameter in the above command indicates that you agree to the Wowza EULA.** +**The `--env WOWZA_VERSION=4.4.1` parameter would cause the version in :current to be upgraded to 4.4.1. 4.4.1 is just an example and you should find the most recent version at https://www.wowza.com/pricing/installer. ** *Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)* From 0cc0da9d8604753bbac862ac5f64ac6ca505d2b7 Mon Sep 17 00:00:00 2001 From: rainabba Date: Wed, 23 Mar 2016 01:24:41 -0700 Subject: [PATCH 2/2] Update docker-compose.yml Include WOWZA_VERSION example --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 8855049..e574e0c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,7 @@ Wowza: image: sameersbn/wowza:4.1.2-8 environment: - WOWZA_ACCEPT_LICENSE=yes + - WOWZA_VERSION=4.4.1 - WOWZA_KEY= ports: - "1935:1935"