Homer

A dead simple static homepage to expose your server services, with an easy yaml configuration and connectivity check.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "2"
 
services:
  homer:
    image: b4bz/homer
    #To build from source, comment previous line and uncomment below
    #build: .
    container_name: homer
    volumes:
      - /your/local/assets/:/www/assets
    ports:
      - 8080:8080
    user: 1000:1000 # default
    environment:
      - INIT_ASSETS=1 # default
    restart: unless-stopped

Resources

Website: https://homer-demo.netlify.app/

GitHub: https://github.com/bastienwirtz/homer

Docker Hub: https://hub.docker.com/r/b4bz/homer

Configuration: https://github.com/bastienwirtz/homer#getting-started