Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/leandroberetta/blue-green
- Owner: leandroberetta
- Created: 2023-03-20T02:06:35.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-20T02:48:06.000Z (almost 2 years ago)
- Last Synced: 2024-11-18T21:03:58.165Z (2 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```