Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 2.06 KB

README.md

File metadata and controls

49 lines (42 loc) · 2.06 KB

Prerender-CacheIO

Donate Coffee GitHub Repo stars Latest Release Docker Pulls Docker Stars

A Dockerized Prerender (v5.20.2) container, designed to boost web page performance through file-based caching.

Getting Started

These instructions will help you to set up Prerender-CacheIO on your machine using Docker and Docker Compose.

Build and run the Docker container

version: "3"
services:
  prerender:
    image: rakma/prerender-cache-io:latest
    container_name: prerenderCacheIO
    networks:
      - default
    volumes:
      - ./cache:/srv/cache
      #- ./prerender:/srv/prerender
    ports:
      - "3001:3000"
    restart: always
docker-compose up -d

ToDo

  • The current configuration sets the cache file lifespan to 24 hours. In future updates, this will be modifiable through an environment variable argument.