unifi-os-server

unifi-os-server

Docker app from GillBates' Repository

Overview

UniFi OS Server running in Docker with full systemd-based service management. Includes the UniFi Network Application, identity hub, credential server, and all supporting services (PostgreSQL, MongoDB, RabbitMQ, nginx). Requirements: - Unraid 6.12 or newer (cgroup v2 required) - At least 4 GB RAM (6-8 GB recommended) - Persistent storage configured for all listed paths IMPORTANT - Device Adoption: - Set UOS_SYSTEM_IP to the IP address or hostname of your Docker host. - Without this, UniFi devices cannot be adopted. First Boot: - All services take 3-5 minutes to initialize on first start. - Do not access the GUI until startup is complete. - Monitor progress: Unraid Docker tab -> Container log, or: docker logs -f unifi-os-server GUI Access: https://[your-Unraid-ip]:11443 Note: The GUI uses a self-signed certificate. Accept the browser security warning to proceed. Troubleshooting: docker logs -f unifi-os-server docker exec -it unifi-os-server systemctl list-jobs docker exec -it unifi-os-server ss -tulpn docker exec -it unifi-os-server journalctl -u unifi-core -f docker exec -it unifi-os-server journalctl -u postgresql -f Source: https://github.com/giiibates/unifi-os-server

UniFi Logo

UniFi OS Server for Docker Compose

Run UniFi OS Server in a Docker container with persistent storage, systemd support, and multi-architecture images.

Latest Version Docker Build Check Updates Docker Pulls


Overview

This repository provides a Docker Compose setup for running UniFi OS Server on a Linux host.

The image is built from the official UniFi OS Server software distributed by Ubiquiti. The included Compose file contains the required runtime settings for systemd, persistent storage, capabilities, temporary filesystems, and exposed ports.

For normal use, start with:

docker-compose.yaml

Security Notice

[!WARNING] Trivy scans may report HIGH or CRITICAL vulnerabilities in this image.

This project packages the official UniFi OS Server software from Ubiquiti. Many findings originate from upstream vendor components and cannot be fixed directly in this repository.

Security fixes must come from Ubiquiti upstream releases and can only be included here after a new upstream version is available.

Update Jun 10, 2026: We have reviewed the information you provided and discussed the findings internally with our development team. The issue has been reported to the responsible teams, and fixes for the affected packages are planned for a future UniFi OS Server release.


Requirements

  • Linux host
  • Docker Engine
  • Docker Compose plugin
  • Free host ports for UniFi OS Server
  • Persistent storage for UniFi data

Check Docker Compose availability:

docker compose version

Technical Build Flow

Build flow from docker/build.sh

The build script loads configuration, resolves the official UniFi OS Server installer URLs, builds one image per requested architecture, validates the runtime image, and optionally publishes architecture images and multi-architecture manifests.

flowchart TD
    A["docker/build.sh"] --> B["Load configuration"]
    B --> C["Resolve installer URLs"]
    C --> D["Validate requested platforms"]
    D --> E["For each platform: amd64 / arm64"]

    subgraph ARCH_BUILD["Per-architecture build"]
        direction TB
        F["1 · Build extractor image"]
        G["2 · Run extractor container"]
        H["Run official Ubiquiti installer"]
        I["Installer imports internal uosserver image into Podman"]
        J["Export /output/uosserver.tar"]
        K["3 · Load extracted image into Docker"]
        L["Tag uosserver:version-arch"]
        M["4 · Build runtime image"]
        N["Final image: image:version-arch"]
        O["5 · Validate runtime image"]
        P["Write provenance metadata"]

        F --> G --> H --> I --> J --> K --> L --> M --> N --> O --> P
    end

    E --> ARCH_BUILD
    P --> Q{"PUSH = true?"}

    Q -->|No| R["Keep local images only"]
    Q -->|Yes| S["Push architecture images"]

    S --> T{"Single arch or multi arch?"}
    T -->|Single arch| U["Tag and push: version + latest"]
    T -->|Multi arch| V["Create and push Docker manifests: version + latest"]

    R --> W["Build complete"]
    U --> W
    V --> W
Extraction architecture

This view shows how the official Ubiquiti installer is executed inside the extractor container and how the internal uosserver image becomes the final runtime image.

flowchart TB
    subgraph HOST["Docker host / CI runner"]
        direction TB
        A["docker/build.sh"] --> B["Dockerfile.extractor"]
        B --> C["Extractor image"]

        subgraph EXTRACTOR["Extractor container"]
            direction TB
            D["Official UniFi OS Server installer"]
            E["Installer runs non-interactively"]
            F["Podman storage"]
            G["Internal uosserver image"]
            H["Exported archive: /output/uosserver.tar"]

            D --> E --> F --> G --> H
        end

        C --> EXTRACTOR
        H --> I["docker load"]
        I --> J["Extracted base image: uosserver:version-arch"]
        J --> K["Dockerfile.runtime"]
        K --> L["Runtime image: image:version-arch"]
        L --> M["Runtime validation"]
        M --> N["Push arch image"]
        N --> O["Multi-arch manifest: version + latest"]
    end

Quick Start

1. Clone or enter the project directory

cd unifi-os-server

2. Create persistent data directories

mkdir -p data/{persistent,var-log,data,srv,var-lib-unifi,var-lib-postgresql,var-lib-mongodb,etc-rabbitmq-ssl}

3. Configure UOS_SYSTEM_IP

Edit docker-compose.yaml and set the address that UniFi devices should use to reach this server.

environment:
  - UOS_SYSTEM_IP=unifi.example.com

You can use either a DNS name or an IP address.

4. Start UniFi OS Server

docker compose up -d

5. Open the web interface

https://<your-host>:11443

Runtime Settings

The provided docker-compose.yaml already includes the required runtime settings.

Setting Value Why it's needed
cgroup host systemd requires access to the host cgroup hierarchy
cap_add NET_RAW, NET_ADMIN Required for network configuration and device adoption
tmpfs /run, /run/lock, /tmp, /var/opt/unifi/tmp systemd and UniFi services need writable in-memory paths at startup
volumes /sys/fs/cgroup:/sys/fs/cgroup:rw Direct cgroup mount required by systemd inside the container
volumes ./data/... Persistent storage — data survives container recreation
stop_signal SIGRTMIN+3 Tells systemd to shut down cleanly instead of being force-killed

Do not remove these settings unless you know exactly which UniFi OS component no longer needs them.


Important Environment Variables

Variable Default Required Description
UOS_SYSTEM_IP Address (hostname or IP) that UniFi devices use to reach this server. Example: unifi.example.com
UOS_SHOW_JOURNAL false Forward the full systemd journal to docker logs. Set to true for verbose service logs.
UOS_UUID auto Fixed UUIDv5 identifier for this instance. Useful when the identity must survive container recreation without a persistent /data mount. Must match format xxxxxxxx-xxxx-5xxx-[89ab]xxx-xxxxxxxxxxxx. An invalid value aborts startup.
HARDWARE_PLATFORM Set to synology to enable Synology-specific runtime patches. Only required on Synology hardware.

Ports

The Compose file already defines the required port mappings.

Commonly used ports:

Port Protocol Required Purpose
11443 TCP UniFi OS web interface
8080 TCP Device communication
8443 TCP UniFi Network application
3478 UDP STUN and adoption
10003 UDP Device discovery

Optional services may expose additional ports depending on your UniFi setup. Unused optional mappings can be removed from docker-compose.yaml.


Updating

Pull the latest image and recreate the container:

docker compose pull
docker compose up -d

Persistent data under ./data/... remains intact.


Stopping

Stop the container:

docker compose down

This does not delete persistent data.


Troubleshooting

Start with the built-in diagnostic tool — it covers most common failure scenarios:

docker exec -it <container_name> diagnostics

It checks services, databases, ports, disk space, volume mounts, and recent journal errors. Exit code 0 means all checks passed.

For issues the tool doesn't resolve:

Symptom What to check
Device adoption fails UOS_SYSTEM_IP set and reachable; 8080/tcp, 3478/udp not blocked by firewall or NAT
Web interface unreachable docker compose ps; docker compose logs -f; ss -tulpen | grep 11443

Disclaimer

This project is not affiliated with, endorsed by, or sponsored by Ubiquiti Inc. UniFi and Ubiquiti are trademarks or registered trademarks of Ubiquiti Inc.


License

See LICENSE.

Buy Me A Coffee

Install unifi-os-server on Unraid in a few clicks.

Find unifi-os-server in Community Apps on your Unraid server, review the template, and click Install. Unraid handles the Docker app or plugin setup from the published template.

Open the Apps tab on your Unraid server Search Community Apps for unifi-os-server Review the template variables and paths Click Install

Download Statistics

7,482
Total Downloads

Related apps

Explore more like this

Explore all

Details

Repository
giiibates/unifi-os-server:latest
Last Updated2026-07-10
First Seen2026-05-15

Runtime arguments

Web UI
https://[IP]:[PORT:443]
Network
bridge
Shell
bash
Privileged
false
Extra Params
--restart unless-stopped --cgroupns=host --cap-add=NET_RAW --cap-add=NET_ADMIN --stop-signal SIGRTMIN+3 --tmpfs /run:exec --tmpfs /run/lock --tmpfs /tmp:exec --tmpfs /var/lib/journal --tmpfs /var/opt/unifi/tmp:size=64m

Template configuration

UOS System IP/HostnameVariable

REQUIRED: IP address or hostname of your Docker host (e.g. 192.168.1.10). Used for UniFi device adoption and remote management.

Target
UOS_SYSTEM_IP
Hardware PlatformVariable

Optional: Set to 'synology' if running on Synology NAS

Target
HARDWARE_PLATFORM
Show systemd journal in Docker logsVariable

Set to 'true' to forward the full systemd journal to Docker logs. Default false shows only the startup banner and entrypoint summary.

Target
UOS_SHOW_JOURNAL
Default
false
TimezoneVariable

Container timezone (e.g. UTC, Europe/Berlin)

Target
TZ
Default
UTC
UniFi OS Server GUIPorttcp

UniFi OS Server GUI/API Port (container listens on 443, mapped to host port 11443)

Target
443
Default
11443
Device CommunicationPorttcp

Device and application communication port (required for adoption)

Target
8080
Default
8080
UniFi Network AppPorttcp

UniFi Network Application GUI/API

Target
8443
Default
8443
Hotspot PortalPorttcp

Secure Portal for Hotspot

Target
8444
Default
8444
STUNPortudp

STUN for device adoption

Target
3478
Default
3478
Device DiscoveryPortudp

Device discovery during adoption

Target
10003
Default
10003
RTPPorttcp

Real-time Transport Protocol

Target
5005
Default
5005
Mobile Speed TestPorttcp

UniFi mobile speed test

Target
6789
Default
6789
Identity HubPorttcp

UniFi Identity Hub

Target
9543
Default
9543
cgroup (systemd)Pathrw

REQUIRED: read-write cgroup mount for systemd as PID 1. Without this the container does not start unless Privileged=true.

Target
/sys/fs/cgroup
Default
/sys/fs/cgroup
Value
/sys/fs/cgroup
Persistent DataPathrw

Path for persistent container data

Target
/persistent
Default
/mnt/user/docker/unifi-os/persistent
LogsPathrw

Path for container logs

Target
/var/log
Default
/mnt/user/docker/unifi-os/logs
UniFi DataPathrw

Path for UniFi application data

Target
/data
Default
/mnt/user/docker/unifi-os/data
srv DirectoryPathrw

Path for srv directory

Target
/srv
Default
/mnt/user/docker/unifi-os/srv
UniFi LibraryPathrw

Path for UniFi library data

Target
/var/lib/unifi
Default
/mnt/user/docker/unifi-os/lib-unifi
PostgreSQL LibraryPathrw

Path for PostgreSQL data (required for persistent databases)

Target
/var/lib/postgresql
Default
/mnt/user/docker/unifi-os/lib-postgresql
MongoDB LibraryPathrw

Path for MongoDB data

Target
/var/lib/mongodb
Default
/mnt/user/docker/unifi-os/lib-mongodb
RabbitMQ SSLPathrw

Path for RabbitMQ SSL certificates

Target
/etc/rabbitmq/ssl
Default
/mnt/user/docker/unifi-os/rabbitmq-ssl