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

Commit

Permalink
Merge pull request #200 from linuxserver/readme-mongo
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad authored Mar 18, 2023
2 parents d8f31aa + d88e96f commit de1316c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ The architectures supported by this image are:
| arm64 || arm64v8-\<version tag\> |
| armhf || |

## Version Tags

This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.

| Tag | Available | Description |
| :----: | :----: |--- |
| latest || Stable Unifi Controller releases. |
| mongoless || Stable Unifi Controller releases without mongodb included. |
## Application Setup

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

## Versions

* **18.03.23:** - Add mongoless branch.
* **10.03.23:** - Test writing to /run/unifi and symlink to /config/run if it fails.
* **20.02.23:** - Migrate to s6v3, install deb package on build, fix permissions.
* **23.01.23:** - Exclude `run` from `/config` volume.
Expand Down
6 changes: 5 additions & 1 deletion readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ available_architectures:
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}

# development version
development_versions: false
development_versions: true
development_versions_items:
- { tag: "latest", desc: "Stable Unifi Controller releases." }
- { tag: "mongoless", desc: "Stable Unifi Controller releases without mongodb included." }

# container parameters
param_container_name: "{{ project_name }}"
Expand Down Expand Up @@ -68,6 +71,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "18.03.23:", desc: "Add mongoless branch."}
- { date: "10.03.23:", desc: "Test writing to /run/unifi and symlink to /config/run if it fails."}
- { date: "20.02.23:", desc: "Migrate to s6v3, install deb package on build, fix permissions."}
- { date: "23.01.23:", desc: "Exclude `run` from `/config` volume."}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fi
if [[ ! -f /config/data/keystore ]]; then
keytool -genkey -keyalg RSA -alias unifi -keystore /config/data/keystore \
-storepass aircontrolenterprise -keypass aircontrolenterprise -validity 3650 \
-keysize 4096 -dname "cn=unifi"
-keysize 4096 -dname "cn=unifi" -ext san=dns:unifi
fi

# permissions
Expand Down

0 comments on commit de1316c

Please sign in to comment.