Customised NGINX base image.
docker pull dockeirorock/nginxAlternatively you can build the image yourself.
git clone https://github.com/dockeiro/docker-nginx.git && \
cd docker-nginx && \
ARCH=$(dpkg --print-architecture)&& \
echo ARCH loaded: ${ARCH} && \
docker build --no-cache \
--build-arg IMAGE=dockeirorock/nginx \
--build-arg BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--build-arg VERSION=$(cat VERSION) \
--build-arg VCS_REF=$(git rev-parse --short HEAD) \
--build-arg VCS_URL=$(git config --get remote.origin.url) \
--tag dockeirorock/nginx:$(cat VERSION)-${ARCH} \
--rm .- Use
CMD [ "/sbin/init.sh", "--debug" ](or override it from the command line) in a child image to run NGINX in the debug mode
- None for now