Skip to content

Uptime Kuma

Description / nameInput element
Container Registry
Container Configuration Root Path
Timezone
User ID
Group ID
Uptime Kuma Host Port
Uptime Kuma /config Path

Build Status Last Commit

A fancy self-hosted monitoring tool on FreeBSD.

Version Tags

Tag Description Best For
latest Upstream Binary. Downloads the official release. Most users. Matches Linux Docker behavior.

Prerequisites

Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.

Deployment

services:
  uptime-kuma:
    image: ghcr.io/daemonless/uptime-kuma:latest
    container_name: uptime-kuma
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC
      - UPTIME_KUMA_IS_CONTAINER=1
      - UPTIME_KUMA_ALLOW_ALL_CHROME_EXEC=1
      - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
      - DATA_DIR=/config
    volumes:
      - /path/to/containers/uptime-kuma:/config
    ports:
      - 3001:3001
    restart: unless-stopped
podman run -d --name uptime-kuma \
  -p 3001:3001 \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=UTC \
  -e UPTIME_KUMA_IS_CONTAINER=1 \
  -e UPTIME_KUMA_ALLOW_ALL_CHROME_EXEC=1 \
  -e PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 \
  -e DATA_DIR=/config \
  -v /path/to/containers/uptime-kuma:/config \ 
  ghcr.io/daemonless/uptime-kuma:latest
- name: Deploy uptime-kuma
  containers.podman.podman_container:
    name: uptime-kuma
    image: ghcr.io/daemonless/uptime-kuma:latest
    state: started
    restart_policy: always
    env:
      PUID: "1000"
      PGID: "1000"
      TZ: "UTC"
      UPTIME_KUMA_IS_CONTAINER: "1"
      UPTIME_KUMA_ALLOW_ALL_CHROME_EXEC: "1"
      PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
      DATA_DIR: "/config"
    ports:
      - "3001:3001"
    volumes:
      - "/path/to/containers/uptime-kuma:/config"

Access the Web UI at: http://localhost:3001

Interactive Configuration

Parameters

Environment Variables

Variable Default Description
PUID 1000 User ID for the application process
PGID 1000 Group ID for the application process
TZ UTC Timezone for the container
UPTIME_KUMA_IS_CONTAINER 1
UPTIME_KUMA_ALLOW_ALL_CHROME_EXEC 1
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD 1
DATA_DIR /config

Volumes

Path Description
/config Data directory (database, settings)

Ports

Port Protocol Description
3001 TCP Web UI

Implementation Details

  • Architectures: amd64
  • User: bsd (UID/GID set via PUID/PGID). Defaults to 1000:1000.
  • Base: Built on ghcr.io/daemonless/base (FreeBSD 15.0).

Website Source Code FreshPorts


Need help? Join our Discord community.