Skip to content
This repository was archived by the owner on Jan 7, 2024. It is now read-only.

Commit de1316c

Browse files
authored
Merge pull request #200 from linuxserver/readme-mongo
2 parents d8f31aa + d88e96f commit de1316c

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ The architectures supported by this image are:
5858
| arm64 || arm64v8-\<version tag\> |
5959
| armhf || |
6060

61+
## Version Tags
62+
63+
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
64+
65+
| Tag | Available | Description |
66+
| :----: | :----: |--- |
67+
| latest || Stable Unifi Controller releases. |
68+
| mongoless || Stable Unifi Controller releases without mongodb included. |
6169
## Application Setup
6270

6371
The webui is at https://ip:8443, setup with the first run wizard.
@@ -272,6 +280,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
272280

273281
## Versions
274282

283+
* **18.03.23:** - Add mongoless branch.
275284
* **10.03.23:** - Test writing to /run/unifi and symlink to /config/run if it fails.
276285
* **20.02.23:** - Migrate to s6v3, install deb package on build, fix permissions.
277286
* **23.01.23:** - Exclude `run` from `/config` volume.

readme-vars.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ available_architectures:
1313
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1414

1515
# development version
16-
development_versions: false
16+
development_versions: true
17+
development_versions_items:
18+
- { tag: "latest", desc: "Stable Unifi Controller releases." }
19+
- { tag: "mongoless", desc: "Stable Unifi Controller releases without mongodb included." }
1720

1821
# container parameters
1922
param_container_name: "{{ project_name }}"
@@ -68,6 +71,7 @@ app_setup_block: |
6871
6972
# changelog
7073
changelogs:
74+
- { date: "18.03.23:", desc: "Add mongoless branch."}
7175
- { date: "10.03.23:", desc: "Test writing to /run/unifi and symlink to /config/run if it fails."}
7276
- { date: "20.02.23:", desc: "Migrate to s6v3, install deb package on build, fix permissions."}
7377
- { date: "23.01.23:", desc: "Exclude `run` from `/config` volume."}

root/etc/s6-overlay/s6-rc.d/init-unifi-controller-config/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fi
7878
if [[ ! -f /config/data/keystore ]]; then
7979
keytool -genkey -keyalg RSA -alias unifi -keystore /config/data/keystore \
8080
-storepass aircontrolenterprise -keypass aircontrolenterprise -validity 3650 \
81-
-keysize 4096 -dname "cn=unifi"
81+
-keysize 4096 -dname "cn=unifi" -ext san=dns:unifi
8282
fi
8383

8484
# permissions

0 commit comments

Comments
 (0)