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
For some reason I was unable to get the Unifi App to work that is in the TrueNAS appstore. My issue was that for some reason I couldn't get the devices to adopt to the controller. Instead I used these directions to install it as a YAML using these directions in the read me:
version: '3'
services:
mongo:
# Use max mongo version 8.0.X. Higher versions are not recommended by Ubiquiti/UniFi.
# Older versions are acceptable, ie: mongo:7.0
image: mongo:8.0
container_name: unifidb
restart: unless-stopped
# By default docker-compose will create a new bridge network for the services in the compose file.
# Enable this to have the services/containers use the existing docker0/default bridge network.
# network_mode: bridge
volumes:
- ./data/db:/data/db
unifi:
image: ghcr.io/goofball222/unifi
container_name: unifi
restart: unless-stopped
# By default docker-compose will create a new bridge network for the services in the compose file.
# Enable this to have the services/containers use the existing docker0/default bridge network.
# network_mode: bridge
links:
- mongo
ports:
- 3478:3478/udp
- 8080:8080
- 8443:8443
- 8880:8880
- 8843:8843
# Optional: Uncomment to enable speed tests from the UniFi iOS & Android apps
# - 6789:6789
# Optional: Uncomment for layer 2 broadcast discovery if container running on a host in the local LAN
# - 10001:10001/udp
volumes:
- /etc/localtime:/etc/localtime:ro
- ./cert:/usr/lib/unifi/cert
- ./data:/usr/lib/unifi/data
- ./logs:/usr/lib/unifi/logs
environment:
- DB_MONGO_LOCAL=false
- DB_MONGO_URI=mongodb://mongo:27017/unifi
- STATDB_MONGO_URI=mongodb://mongo:27017/unifi_stat
- TZ=UTC
- UNIFI_DB_NAME=unifi
The issue is probably that the default install settings uses a bunch of the wrong ports. Maybe there needs to be a separate guide for TrueNAS setup.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
For some reason I was unable to get the Unifi App to work that is in the TrueNAS appstore. My issue was that for some reason I couldn't get the devices to adopt to the controller. Instead I used these directions to install it as a YAML using these directions in the read me:
The issue is probably that the default install settings uses a bunch of the wrong ports. Maybe there needs to be a separate guide for TrueNAS setup.
All reactions