nginx compiled with push stream module Dockerfile : https://github.com/hqms/docker-nginx-push-stream
1.4K
Docker image for an nginx with additional push stream module
This repository consists of pre-built scripts and docker ready-to-built Dockerfile
This docker image based on latest Alpine linux. The build processes composed up in 2 steps:
To build from scratch just run build script from shell
# ./build.sh
The script will build image based on /build/Dockerfile, create container and compile nginx with additional module on that container. The result of this process is nginx.tar.gz file.
The script then build Dockerfile and use nginx.conf as its default configuration file.
By default, docker images name defined in line 2 and 3 in build.sh
DOCKER_RUN_IMAGE=nginx-push-stream
DOCKER_BUILD_IMAGE=nginx-push-stream-build
Exposed port by default is on 8080
To customise compiled nginx package, edit /build/Dockerfile before running this script
To build docker image, simply run docker build
# docker build -t nginx-push-stream .
To create container based created image:
# docker run -d --name nginx-push-stream -p 8080:80 -t nginx-push-stream
Content type
Image
Digest
sha256:e76ad8513…
Size
87.8 MB
Last updated
about 2 years ago
docker pull 1hqm/nginx-push-stream