Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)*

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down