homer
Posted
A very simple static homepage for your server.
# file: `docker-compose.yml`
services:
homer:
container_name: homer
image: ${HONEYPI_IMAGE_REGISTRY_HOST:-docker.io}/b4bz/homer:${HONEYPI_HOMER_VERSION:-latest}
restart: unless-stopped
ports:
- ${HONEYPI_HOME_PORT:-8080}:8080
volumes:
- ${HONEYPI_CONFIG}/homer/www/assets:/www/assets
labels:
- traefik.enable=${HONEYPI_HOMER_TRAEFIK_ENABLE:-false}
- traefik.http.routers.homer.rule=Host(`${HONEYPI_HOMER_HOST}`)
- traefik.http.routers.homer.entrypoints=websecure
- traefik.http.routers.homer.tls.certresolver=resolver
- traefik.http.routers.homer.service=homer
- traefik.http.services.homer.loadbalancer.server.port=8080