https://github.com/moertel/colourpage
A service displaying a static coloured HTML page. Useful for testing deployment strategies.
https://github.com/moertel/colourpage
Last synced: 4 months ago
JSON representation
A service displaying a static coloured HTML page. Useful for testing deployment strategies.
- Host: GitHub
- URL: https://github.com/moertel/colourpage
- Owner: moertel
- Created: 2020-09-16T08:42:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T08:36:13.000Z (over 3 years ago)
- Last Synced: 2025-01-05T02:23:32.792Z (over 1 year ago)
- Language: Dockerfile
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Static HTML Page w/ Single Colour
Displays a static HTML page with a configurable background colour. Useful for easily testing deployment pipelines. (And put some meaning into blue/green and red/black...)
Runs on port 80 by default. To change its colour, run:
```
docker run -e COLOUR=red -p 8080:80 -it moertel/colour
```
Or you can use hex codes as well:
```
docker run -e COLOUR='#000' -p 8080:80 -it moertel/colour
```