├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.md └── run.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonRivers/Docker-nginx-rtmp/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonRivers/Docker-nginx-rtmp/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonRivers/Docker-nginx-rtmp/HEAD/README.md -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonRivers/Docker-nginx-rtmp/HEAD/run.sh --------------------------------------------------------------------------------