Sign inSign up

mondora/prerender

By mondora

Updated over 8 years ago

Easy to use prerender docker image

Image
6

8.3K

mondora/prerender repository overview

prerender docker image

This image aims to give an easy way to run a prerender server. It's ideal to be used in environments such as Amazon ECS or Docker Cloud.

Usage

Just add the container in your task / topology definition. Then link to it the front-end container, making the prerender middleware point at http://prerender-container-address:3000.

Minimal docker example (supposing the front-end is served by nodejs using the prerender-node middleware):

docker run -d --name prerender mondora/prerender
docker run -d --name frontend \
    --link prerender:prerender \
    -e PRERENDER_SERVICE_URL="http://prerender:3000/"
    mycomp/myapp

Configuration

The server can be configured via the following environment variables:

  • ALLOWED_DOMAINS: a comma-separated list of domains for which you want to allow requests. Requests for other domains will result in a 404. Example: mysite.com,www.mysite.com

  • BLACKLISTED_DOMAINS: a comma-separated list of domains for which you want to disallow requests. Requests for this domains will result in a 404. Example: yahoo.com,www.google.com. Note: this option is moot if ALLOWED_DOMAINS is specified

  • AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION, S3_BUCKET_NAME, S3_PREFIX_KEY: variables used to configure the s3HtmlCache prerender plugin. AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and S3_BUCKET_NAME are required, otherwise the inMemoryHtmlCache plugin will be used.

Tag summary

Content type

Image

Digest

Size

307.6 MB

Last updated

over 8 years ago

docker pull mondora/prerender