Sign inSign up

cgeosoft/landing

By cgeosoft

Updated about 6 years ago

Landing page for docker

Image
0

100K+

cgeosoft/landing repository overview

Landing page for docker

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.

Example run

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

Tag summary

Content type

Image

Digest

Size

42.2 MB

Last updated

about 6 years ago

docker pull cgeosoft/landing