Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 608 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 608 Bytes

Redirector

Docker Build Statu Docker Pulls

Simple HTTP redirection service built on top of Nginx.

How to run

From the source

export IMAGE_NAME=my-redirector
docker build -t $IMAGE_NAME .
docker run -e DESTINATION=your.website.com -p 80:80 $IMAGE_NAME

From Docker Hub

docker run -it -e DESTINATION=your.website.com -p 80:80 rainist/redirector