Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leandroberetta/blue-green

Simple application to test a blue-green deployment.
https://github.com/leandroberetta/blue-green

Last synced: 6 days ago
JSON representation

Simple application to test a blue-green deployment.

Awesome Lists containing this project

README

        

# Blue-Green

Simple application to test a blue-green deployment.

## Usage

To test the deployment, an environment variable called **BACKGROUND_COLOR** can be used with some colors like **blue**, **green** or any other color you like.

## Build image

```
podman build -t blue-green .
```

## Run application

```
podman run -p 8080:8080 -e 'BACKGROUND_COLOR=blue' blue-green:latest
```