No description
Find a file
semantic-release-bot 360488764a chore(release): 1.5.0 [skip ci]
# [1.5.0](https://github.com/de-it-krachten/ansible-role-unifi_docker/compare/v1.4.0...v1.5.0) (2026-03-15)

### Features

* Added support for Fedora 43 ([68aa10e](68aa10e270))
* Drop support for Debian 10 (Buster) ([9ec6172](9ec6172a9c))
* Drop support for Fedora 41 ([9973d1b](9973d1b098))
* Drop support for openSUSE Leap 15 ([e8b4fe7](e8b4fe7b85))
* Drop support for SUSE Linux Enterprise 15 ([9b74ee5](9b74ee5b7b))
2026-03-15 11:41:44 +00:00
.github/workflows Update CI 2026-03-14 20:06:47 +01:00
defaults Initial commit 2023-02-03 19:03:44 +01:00
handlers feat: Update supported platforms & CI 2024-12-29 15:21:02 +01:00
meta Update CI 2026-03-14 20:06:47 +01:00
molecule/default Update supported platforms & CI 2026-03-14 20:06:47 +01:00
tasks Update CI (05-05-2023) 2023-05-09 01:20:04 +02:00
templates Initial commit 2023-02-03 19:03:44 +01:00
.ansible-lint Initial commit 2023-02-03 19:03:44 +01:00
.cicd Update CI 2026-03-07 01:08:46 +01:00
.cicd.overwrite Update CI 2026-03-14 20:06:47 +01:00
.collections feat: Add support for Ubuntu 24.04 LTS + Fedora 40 2024-05-31 23:55:40 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 15:21:02 +01:00
.releaserc.yml Update CI 2025-09-03 21:12:38 +02:00
.roles Initial commit 2023-02-03 19:03:44 +01:00
.yamllint feat: Update supported platforms & CI 2024-12-29 15:21:02 +01:00
CHANGELOG.md chore(release): 1.5.0 [skip ci] 2026-03-15 11:41:44 +00:00
README.md Update CI 2026-03-14 20:06:47 +01:00

CI

ansible-role-unifi_docker

Sets up a Docker container with UniFi Network Application

Dependencies

Roles

None

Collections

  • community.docker

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • Red Hat Enterprise Linux 101
  • RockyLinux 81
  • RockyLinux 91
  • RockyLinux 101
  • OracleLinux 81
  • OracleLinux 91
  • OracleLinux 101
  • AlmaLinux 81
  • AlmaLinux 91
  • AlmaLinux 101
  • Debian 11 (Bullseye)1
  • Debian 12 (Bookworm)1
  • Debian 13 (Trixie)1
  • Ubuntu 18.04 LTS1
  • Ubuntu 20.04 LTS1
  • Ubuntu 22.04 LTS1
  • Ubuntu 24.04 LTS1
  • Fedora 421
  • Fedora 431
  • Alpine 31
  • Docker dind (CI only)

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# Base path where docker compose & volume path will exist
unifi_docker_data: /export/docker/unifi

# Docker volume with persistant unifi data
unifi_docker_volume: "{{ unifi_docker_data }}/unifi"

# Netowrk mode for docker container to operate in
unifi_docker_network_mode: host

# List of firewall ports to open for unifi
unifi_fw_ports:
  - { port: 8080, proto: tcp }
  - { port: 8443, proto: tcp }
  - { port: 3478, proto: udp }
  - { port: 1900, proto: udp }
  - { port: 10001, proto: udp }

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'unifi_docker'
  hosts: all
  become: 'yes'
  tasks:
    - name: Include role 'unifi_docker'
      ansible.builtin.include_role:
        name: unifi_docker