https://github.com/red5/docker
Docker + Red5 items
https://github.com/red5/docker
docker java rtmp
Last synced: 4 months ago
JSON representation
Docker + Red5 items
- Host: GitHub
- URL: https://github.com/red5/docker
- Owner: Red5
- License: apache-2.0
- Created: 2015-01-15T01:32:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-02-15T15:39:37.000Z (almost 7 years ago)
- Last Synced: 2025-05-09T00:52:49.793Z (9 months ago)
- Topics: docker, java, rtmp
- Size: 17.6 KB
- Stars: 35
- Watchers: 11
- Forks: 22
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Red5 Media Server
Docker + Red5 items
What is [Docker](https://www.docker.com/)?
### Docker Base Images
* [corretto 8](https://docs.aws.amazon.com/corretto/latest/corretto-8-ug/docker-install.html)
* [ubuntu](https://registry.hub.docker.com/_/ubuntu/)
* [java](https://registry.hub.docker.com/_/java/)
### Docker Tags
* `latest` (default): Red5 1.0.10 Release + Corretto 8 (Essentially OpenJDK 8)
For example, you can run a `Red5` container with the following command:
docker run -it --rm mondain/red5
### Installation
1. Install [Docker](https://www.docker.com/).
2. Download [automated build](https://registry.hub.docker.com/u/mondain/red5/) from public [Docker Hub Registry](https://registry.hub.docker.com/): `docker pull mondain/red5`
(alternatively, you can build an image from Dockerfile: `docker build -t="mondain/red5" github.com/Red5/docker`)
### Usage
1. Starts red5 and exposes default ports for http and rtmp/e
```sh
docker run -it -p 5080:5080 -p 1935:1935 --rm mondain/red5
```
1. Starts red5 and exposes default ports for http, rtmp/e, and websocket
```sh
docker run -it -p 5080:5080 -p 1935:1935 -p 8081:8081 --rm mondain/red5
```
### Additional Information
* [Container linking](https://docs.docker.com/userguide/dockerlinks/)
* [Managing data](https://docs.docker.com/userguide/dockervolumes/)