This a simple landing page generator for docker. It uses envplate to replace in run time string in html templates with enviroment variables. The current template (one for the moment) is based on the skeleton boilerplate.
With docker
docker run --name landing -e TITLE=mysite -e SUBTITLE=mysite -e DESCRIPTION=mysite -e AUTHOR=me -p 80:80 -d cgeosoft/landing
or with docker-compose
version: '3.4'
services:
landing:
image: cgeosoft/landing
ports:
- "80:80"
environment:
TITLE: example_title
SUBTITLE: example_subtitle
DESCRIPTION: example_description
AUTHOR: example_author
Content type
Image
Digest
Size
42.2 MB
Last updated
about 6 years ago
docker pull cgeosoft/landing