You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TRIGGER_REASON="A version change was detected for unifi-network-application tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}"
142
+
TRIGGER_REASON="A version change was detected for unifi-network-application tag latest. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}"
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@
5
5
[](https://blog.linuxserver.io"all the things you can do with our containers including How-To guides, opinions and much more!")
6
6
[](https://linuxserver.io/discord"realtime support / chat with the community and the team.")
7
7
[](https://discourse.linuxserver.io"post on our community forum.")
8
-
[](https://fleet.linuxserver.io"an online web interface which displays all of our maintained images.")
9
8
[](https://github.com/linuxserver"view the source for all of our repositories.")
10
9
[](https://opencollective.com/linuxserver"please consider helping us by either donating or contributing to our budget")
11
10
@@ -22,7 +21,6 @@ Find us at:
22
21
*[Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
23
22
*[Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team.
24
23
*[Discourse](https://discourse.linuxserver.io) - post on our community forum.
25
-
*[Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
26
24
*[GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
27
25
*[Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
28
26
@@ -54,7 +52,6 @@ The architectures supported by this image are:
54
52
| :----: | :----: | ---- |
55
53
| x86-64 | ✅ | amd64-\<version tag\>|
56
54
| arm64 | ✅ | arm64v8-\<version tag\>|
57
-
| armhf | ❌ ||
58
55
59
56
## Application Setup
60
57
@@ -88,7 +85,8 @@ db.createUser({
88
85
pwd: "${MONGO_PASS}",
89
86
roles: [
90
87
{ db: "${MONGO_DBNAME}", role: "dbOwner" },
91
-
{ db: "${MONGO_DBNAME}_stat", role: "dbOwner" }
88
+
{ db: "${MONGO_DBNAME}_stat", role: "dbOwner" },
89
+
{ db: "${MONGO_DBNAME}_audit", role: "dbOwner" }
92
90
]
93
91
})
94
92
EOF
@@ -418,6 +416,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
418
416
419
417
## Versions
420
418
419
+
***08.05.25:** - Update sample `init-mongo.sh`for compatibility with 9.1.120 (only affects new installs).
421
420
***13.02.25:** - Revert JRE to 17.
422
421
***12.02.25:** - Bump JRE to 21.
423
422
***11.08.24:** - **Important**: The mongodb init instructions have been updated to enable auth ([RBAC](https://www.mongodb.com/docs/manual/core/authorization/#role-based-access-control)). We have been notified that if RBAC is not enabled, the official mongodb container allows remote access to the db contents over port 27017 without credentials. If you set up the mongodb container with the old instructions we provided, you should not map or expose port 27017. If you would like to enable auth, the easiest way is to create new instances of both unifi and mongodb with the new instructions and restore unifi from a backup.
0 commit comments