services: homepage: image: ghcr.io/gethomepage/homepage:latest container_name: homepage restart: unless-stopped environment: - PUID=${PUID:-1000} - PGID=${PGID:-1000} # Comma-separated hostnames the UI may be reached under, or "*" to allow all. - HOMEPAGE_ALLOWED_HOSTS=${ALLOWED_HOSTS:-*} ports: - "${HTTP_PORT:-3005}:3000" volumes: - ${DATA_PATH:-/srv/homepage}:/app/config - /var/run/docker.sock:/var/run/docker.sock:ro