kirbah/blue-green
Simple Busybox http image that returns either blue or green static page
2.6K
A minimal Busybox httpd based web server with an either blue or green background color. The web server runs on port 8080 and serves a simple HTML page indicating the chosen color as the background.
https://github.com/kirbah/blue-green
To start a blue/green web server container:
docker run -d --name my-blue -p 80:8080 docker.io/kirbah/blue-green:blue
docker run -d --name my-green -p 82:8080 docker.io/kirbah/blue-green:green
It is possible to check requests logs via
docker logs -f my-green
docker pull kirbah/blue-green