4 Commits

Author SHA1 Message Date
aeb42d9ce7 docs(release): create v1.1.2 change log entry 2025-01-08 11:08:38 +01:00
debb1f9e63 Merge pull request 'server-v9' (#1) from server-v9 into main
Reviewed-on: #1
2025-01-08 09:45:04 +01:00
d4291453cc fix: Use the variable container name 2025-01-08 09:41:55 +01:00
87ead41f5e chore: Update unifi controller.
Add conventional commits.
2025-01-08 09:26:38 +01:00
5 changed files with 79 additions and 2 deletions

View File

@@ -1,3 +1,15 @@
## **v1.1.2**&emsp;<sub><sup>2025-01-08 (87ead41f5e65ec7beca3e1ab3e01e1a5dc5c17c1...debb1f9e6395a022a53630b5d95686235f23c1ca)</sup></sub>
### Bug Fixes
- Use the variable container name (d4291453cc1c3092db8eaf4fc4fc8db8d4550986)
### Merges
- pull request 'server\-v9' \(\#1\) from server\-v9 into main (debb1f9e6395a022a53630b5d95686235f23c1ca)
<br>
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

View File

@@ -1,12 +1,14 @@
---
## General
unifi_image: lscr.io/linuxserver/unifi-controller:latest
unifi_image: lscr.io/linuxserver/unifi-network-application:latest
unifi_container_name: unifi-network-application
unifi_uid: 1000
unifi_gid: 1000
unifi_mem_limit: 1024
unifi_mem_startup: 1024
unifi_tz: "Etc/UTC"
unifi_volume: "unifi"
@@ -22,6 +24,13 @@ unifi_http_port_8880: 8880
unifi_http_port_6789: 6789
unifi_http_port_5514: 5514
unifi_mongo_user: unifi
unifi_mongo_pass:
unifi_mongo_host: unifi-db
unifi_mongo_port: 27017
unifi_nongo_db_name: unifi
unifi_mongo_auth_source: admin
unifi_mongo_tls:
# Unifi-Controller paths
unifi_root_path: /var/local

View File

@@ -0,0 +1,43 @@
---
convention:
commitTypes:
- feat
- fix
- perf
- refactor
- style
- test
- build
- ops
- docs
- chore
- merge
- revert
commitScopes: []
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
changelog:
commitTypes:
- feat
- fix
- perf
- merge
includeInvalidCommits: true
commitIgnoreRegexPattern: "^WIP "
headlines:
feat: Features
fix: Bug Fixes
perf: Performance Improvements
merge: Merges
breakingChange: BREAKING CHANGES
## GitHub
# commitUrl: https://github.com/ACCOUNT/REPOSITORY/commit/%commit%
# commitRangeUrl: https://github.com/ACCOUNT/REPOSITORY/compare/%from%...%to%?diff=split
## GitHub Issues
# issueRegexPattern: "#[0-9]+"
# issueUrl: https://github.com/ACCOUNT/REPOSITORY/issues/%issue%
## Jira Issues
# issueRegexPattern: "[A-Z][A-Z0-9]+-[0-9]+"
# issueUrl: https://WORKSPACE.atlassian.net/browse/%issue%

View File

@@ -1,9 +1,10 @@
# unifi-controller docker compose
---
version: '3.9'
services:
unifi-controller:
image: "{{ unifi_image }}"
container_name: unifi-controller-service
container_name: "{{ unifi_container_name }}"
restart: unless-stopped
env_file:
- "{{ unifi_config_path | expanduser }}/env.unifi-controller.conf"

View File

@@ -5,4 +5,16 @@ PUID={{ unifi_gid }}
MEM_LIMIT={{ unifi_mem_limit }}
MEM_STATUP={{ unifi_mem_startup }}
TZ={{ unifi_tz }}
MONGO_USER={{ unifi_mongo_user }}
MONGO_PASS={{ unifi_mongo_pass }}
MONGO_HOST={{ unifi_mongo_host }}
MONGO_PORT={{ unifi_mongo_port }}
MONGO_DBNAME={{ unifi_nongo_db_name }}
MONGO_AUTHSOURCE={{ unifi_mongo_auth_source }}
{% if unifi_mongo_tls is defined -%}
MONGO_TLS= {{ unifi_mongo_tls }}
{% endif %}