Skip to main content

Homepage on Google Cloud Run

Homepage on Google Cloud Run

Homepage (gethomepage/homepage) is a self-hosted, highly customizable application dashboard/service-launcher — a Next.js 16 / Node 22 application whose entire configuration (services, bookmarks, widgets, layout) lives in a handful of YAML files, with optional live status/stats widgets for other self-hosted apps you run. This module deploys Homepage on Cloud Run v2 on top of the App_CloudRun foundation, which provisions and manages the shared Google Cloud infrastructure.

This guide focuses on the cloud services Homepage uses and how to explore and operate them from the Google Cloud Console and the command line. For the mechanics common to every Cloud Run application — service identity, ingress and load balancing, scaling and concurrency, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC Service Controls, backups, and the deployment lifecycle — refer to the App_CloudRun foundation guide rather than repeating them here.


1. Overview

Homepage runs as a single Node.js/Next.js container on Cloud Run v2. Unlike almost every other module in this catalogue, it has no database and no cache — its entire state is a directory of YAML files:

CapabilityGoogle Cloud serviceNotes
ComputeCloud Run v2Single Node.js process, 1000m CPU / 512Mi memory by default
DatabasenoneHomepage has no database of any kind; database_type = "NONE"
Object storageCloud StorageA storage bucket mounted at /app/config via GCS FUSE — holds every YAML config file (settings.yaml, services.yaml, bookmarks.yaml, widgets.yaml, docker.yaml) plus logs
Cache & queuenoneenable_redis = false is hardcoded in main.tf, overriding the foundation's own default of true
SecretsnoneNo secret is generated — Homepage needs no credentials of its own
IngressCloud Run URLDefault run.app URL; optional external HTTPS load balancer + custom domain

Sensible defaults worth knowing up front:

  • Genuinely prebuilt — no custom image, no Cloud Build for the app. Homepage_Common sets image_source = "prebuilt" and container_build_config.enabled = false; ghcr.io/gethomepage/homepage is deployed directly. enable_image_mirroring = true still copies it into Artifact Registry (avoids GHCR rate limits), but that is a mirror, not a build.
  • Port 3000, health path /api/healthcheck. Confirmed via a live deployment: GET /api/healthcheck returns an unauthenticated 200 "up" once the app is ready (backed by the image's own HEALTHCHECK directive).
  • No database, no Redis — architecturally unusual for this catalogue. Almost every other application module wires a Cloud SQL instance and/or Redis through the foundation; Homepage needs neither. This also means it has none of the usual DSN-wiring, socket-vs-TCP, or password-URL-encoding classes of bugs documented elsewhere in this repository — there is simply no database connection to get wrong.
  • Scale-to-zero and multi-instance are both genuinely safe. Homepage reads its YAML config live from disk on every request (no in-process cache), and its one-time first-boot config self-seed is idempotent. The module defaults to min_instance_count = 0 / max_instance_count = 3 — most stateful apps in this catalogue need the opposite (min = 1, max = 1) to avoid cold-start loss or a single-writer race; Homepage needs neither guard.
  • No authentication of its own. HOMEPAGE_ALLOWED_HOSTS defaults to "*" — this only gates the Host header check on Homepage's /api/* widget-data calls, not real access control. Put it behind IAP, a VPN, or a reverse proxy if you need to restrict who can reach it.
  • A documented, verified GCS FUSE mount-option override on Cloud Run. Homepage_Common requests uid=1000,gid=1000 in the volume's mount_options (matching the container's PUID/PGID), but Cloud Run's own built-in gcsfuse integration silently substitutes its own uid=2000,gid=2000 — confirmed via the GCSFuse "CLI Flags" log line at deploy time. This had no functional impact (the mount stayed self-consistent and writable), but it is worth knowing so a future maintainer does not assume the configured mount_options are literally honored on Cloud Run.

2. Google Cloud Services & How to Explore Them

All commands assume PROJECT and REGION are set. Service and resource names are reported in the deployment Outputs.

A. Cloud Run — the Homepage service

  • Console: Cloud Run → select the service for revisions, traffic, logs, and metrics.
  • CLI:
    gcloud run services list --project "$PROJECT" --region "$REGION"
    gcloud run services describe <service-name> --project "$PROJECT" --region "$REGION"

See App_CloudRun for scaling, concurrency, and traffic splitting.

B. Cloud Storage — the configuration volume

The storage bucket is mounted at /app/config via GCS FUSE. It holds every YAML config file Homepage reads (settings.yaml, services.yaml, bookmarks.yaml, widgets.yaml, docker.yaml) plus Homepage's logs — this bucket is Homepage's entire persistent state; there is nothing else to back up.

  • CLI:
    gcloud storage buckets list --project "$PROJECT" --filter="name~homepage"
    gcloud storage ls "gs://<bucket-name>/"
    gcloud storage cat "gs://<bucket-name>/settings.yaml"

C. Secret Manager

Nothing to see here — Homepage generates no secrets. Confirming this is itself a useful sanity check on a fresh deployment:

gcloud secrets list --project "$PROJECT" --filter="name~homepage"
# expect: no results

D. Networking & ingress

  • CLI:
    gcloud run services describe <service-name> --region "$REGION" --format='value(status.url)'

E. Cloud Logging & Monitoring

  • CLI:
    gcloud run services logs read <service-name> --project "$PROJECT" --region "$REGION" --limit 50
    Look for the GCSFuse "CLI Flags" log line near boot to confirm the actual mounted UID/GID (see §1 above — it will read uid=2000,gid=2000 on Cloud Run regardless of the configured mount_options).

3. Homepage Application Behaviour

  • No first-deploy database-schema job. Homepage has no database, so initialization_jobs is empty by default and no job is needed.
  • No first-run setup wizard. There is no admin account to create and no onboarding flow — Homepage renders its dashboard from whatever config exists in /app/config (the upstream image's own bundled defaults on a fresh deployment, since the entrypoint self-seeds any missing file). Customize the dashboard by editing the YAML files directly (see §2B) or by configuring docker.yaml/label-based discovery if you connect it to a Docker/Kubernetes API.
  • Health path. Startup and liveness probes both target GET /api/healthcheck — an unauthenticated 200 "up", confirmed live.
  • Inspect job execution (should show nothing, by design):
    gcloud run jobs executions list --job <job-name> --project "$PROJECT" --region "$REGION"

The GCS FUSE mount-option override — worth knowing, not worth worrying about

Homepage_Common explicitly sets mount_options with uid=1000,gid=1000 on the /app/config GCS volume, matching the container's PUID=1000/PGID=1000 environment variables. On a live deployment, Cloud Logging's GCSFuse "CLI Flags" line at container start shows the actual mount using uid=2000,gid=2000 — Cloud Run's own built-in gcsfuse integration overrides the configured value unconditionally. In testing this had no functional impact: the mount was self-consistent (Cloud Run's overridden UID/GID matched what the mount itself used for all subsequent writes) and the app booted and wrote its config cleanly. The lesson is narrower than a bug: don't assume the mount_options UID/GID you configure are what Cloud Run literally uses — verify via the log line if you are ever debugging a real permissions issue here. (This is specific to Cloud Run's own gcsfuse integration; GKE's separate GCS FUSE CSI driver has no such override and genuinely requires the configured UID/GID to match the container's user — see the GKE gcsfuse finding referenced in this repository's CLAUDE.md.)

gcloud run services logs read <service-name> --project "$PROJECT" --region "$REGION" --limit 100 \
| grep -i "gcsfuse"

4. Configuration Variables

Variables are grouped exactly as they appear on the deployment platform. Only settings specific to or notable for Homepage are listed; every other input is inherited from App_CloudRun with its standard behaviour.

Group 3 — Application Identity

VariableDefaultDescription
application_namehomepageBase name for resources.
application_display_nameHomepageHuman-readable name shown in the platform UI.
application_versionlatestPassed straight through as the ghcr.io/gethomepage/homepage image tag — no build step.
homepage_allowed_hosts*HOMEPAGE_ALLOWED_HOSTS — comma-separated Host header allowlist for Homepage's own /api/* calls. Not a real access-control boundary.

Group 4 — Runtime & Scaling

VariableDefaultDescription
container_port3000Homepage's Next.js standalone server port.
cpu_limit / memory_limit1000m / 512MiLightweight — the gen2 512Mi floor is plenty.
min_instance_count / max_instance_count0 / 3Both directions are genuinely safe here — see §1; a rare case in this catalogue where the wide default is intentional, not a placeholder.
enable_image_mirroringtrueMirrors the prebuilt image into Artifact Registry (avoids GHCR rate limits) — not a build.
container_protocolhttp1Plain HTTP/1.1; no gRPC/h2c requirement.
enable_cloudsql_volumefalseHomepage has no Cloud SQL — keep false.

Group 11 — Cloud Storage & Filesystem

VariableDefaultDescription
gcs_volumes[]The storage bucket mount at /app/config is added automatically; use this for additional volumes only.
enable_nfsfalseNot needed — GCS FUSE at /app/config is sufficient for Homepage's config-file workload.

Group 12 — Database Backend

VariableDefaultDescription
database_typeNONEFixed by Homepage_Common — Homepage has no SQL database, full stop.

Group 13 — Jobs & Scheduled Tasks

VariableDefaultDescription
initialization_jobs[]Stays empty by default — nothing to bootstrap.

Group 14 — Observability & Health

VariableDefaultDescription
startup_probe / liveness_probeHTTP /api/healthcheckUnauthenticated 200 "up" — an accurate default matching the image's own HEALTHCHECK directive, forwarded unchanged from Homepage_Common.

5. Outputs

OutputDescription
service_name / homepage_urlCloud Run service name and the dashboard URL (port 3000).
storage_bucketsThe storage bucket backing /app/config.
container_image / container_registryThe deployed image reference and Artifact Registry repository.
deployment_id / tenant_id / resource_prefixNaming identifiers.
project_id / project_numberProject identifiers.
initialization_jobsCreated initialization job names (empty for Homepage).

6. Configuration Pitfalls & Sensible Defaults

Risk: Critical (data loss / outage / security) — High (service degraded) — Medium (cost or partial degradation) — Low (minor).

SettingSensible valueRiskConsequence if wrong
gcs_volumes / storage at /app/configLeave the automatic storage mount in placeCriticalRemoving or misconfiguring this volume loses every YAML config file on the next cold start — Homepage has no other source of truth.
HOMEPAGE_ALLOWED_HOSTSLeave * unless you know the final hostname, then tighten itMediumA too-narrow value 400s every API-backed widget (page shell still loads) if the actual request hostname doesn't match; treating it as a real auth boundary is a false sense of security either way.
Probe pathLeave at /api/healthcheckHighAn authenticated or nonexistent probe path would leave the revision permanently unhealthy even though the app booted fine.
enable_redisLeave the hardcoded false alone (do not attempt to force it via environment_variables)LowHomepage has nothing to cache; enabling Redis wastes a Memorystore/NFS-Redis dependency for no benefit.
Assumed GCS FUSE mount UID/GIDDon't rely on the configured uid=1000,gid=1000 being literal on Cloud RunLowCloud Run's own gcsfuse integration silently uses uid=2000,gid=2000 instead — harmless in practice, but a red herring if you're debugging a permissions issue by reading the Terraform instead of the actual mount log line.

For the foundation behaviour referenced throughout — service identity, scaling and concurrency, ingress and load balancing, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC-SC, backups, and image mirroring — see App_CloudRun. Homepage-specific application configuration is described in Homepage_Common.