mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2025-11-23 17:04:27 +01:00
add unify-network-application
This commit is contained in:
12
examples/unify-network-application/README.md
Normal file
12
examples/unify-network-application/README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# References
|
||||
|
||||
- https://hub.docker.com/r/linuxserver/unifi-network-application
|
||||
- https://github.com/Haxxnet/Compose-Examples/issues/16#issuecomment-1733524477
|
||||
|
||||
# Notes
|
||||
|
||||
Note that you are mounting a file named init-mongo.js into the mongo db container. This file is necessary to initialize the mongo database (see https://hub.docker.com/_/mongo/ at "Initializing a fresh instance").
|
||||
|
||||
It basically defines the database name and user credentials for the unifi-network-application container.
|
||||
|
||||
These parameters are also referenced in the docker-compose.yml file. So either leave as is or adjust everywhere accordingly.
|
||||
44
examples/unify-network-application/docker-compose.yml
Normal file
44
examples/unify-network-application/docker-compose.yml
Normal file
@@ -0,0 +1,44 @@
|
||||
version: "2.1"
|
||||
|
||||
services:
|
||||
unifi-network-application:
|
||||
image: lscr.io/linuxserver/unifi-network-application:latest
|
||||
container_name: unifi-network-application
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
- MONGO_USER=unifi
|
||||
- MONGO_PASS=unifi
|
||||
- MONGO_HOST=unifi-db
|
||||
- MONGO_PORT=27017
|
||||
- MONGO_DBNAME=unifi-db
|
||||
- MEM_LIMIT=1024 #optional
|
||||
- MEM_STARTUP=1024 #optional
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/unifi-network-application/config:/config
|
||||
depends_on:
|
||||
- unifi-db
|
||||
ports:
|
||||
- 8443:8443
|
||||
- 3478:3478/udp
|
||||
- 10001:10001/udp
|
||||
- 8080:8080
|
||||
- 1900:1900/udp #optional
|
||||
- 8843:8843 #optional
|
||||
- 8880:8880 #optional
|
||||
- 6789:6789 #optional
|
||||
- 5514:5514/udp #optional
|
||||
restart: unless-stopped
|
||||
|
||||
unifi-db:
|
||||
image: mongo:4.4
|
||||
container_name: unifi-network-application-mongodb
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- 27017
|
||||
environment:
|
||||
- MONGO_INITDB_DATABASE=unifi-db
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/unifi-network-application/mongodb_data:/data/db
|
||||
- ./init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
|
||||
2
examples/unify-network-application/init-mongo.js
Normal file
2
examples/unify-network-application/init-mongo.js
Normal file
@@ -0,0 +1,2 @@
|
||||
db.getSiblingDB("unifi-db").createUser({user: "unifi", pwd: "unifi", roles: [{role: "readWrite", db: "unifi-db"}]});
|
||||
db.getSiblingDB("unifi-db_stat").createUser({user: "unifi", pwd: "unifi", roles: [{role: "readWrite", db: "unifi-db_stat"}]});
|
||||
Reference in New Issue
Block a user