diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-16 17:48:34 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-16 17:48:34 +0100 |
commit | 5b901a40b3844ca999bd3080d4616a5c7a12113d (patch) | |
tree | 83fe01ef8d2c329f1566ac34d0aaf6efef5f8f02 |
initial commit
-rw-r--r-- | LICENSE | 21 | ||||
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | compose.yml | 18 |
3 files changed, 42 insertions, 0 deletions
@@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 HimbeerserverDE + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..6ce4709 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# unifi + +Run Unifi Controller in a Docker container. diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..87462d7 --- /dev/null +++ b/compose.yml @@ -0,0 +1,18 @@ +services: + unifi: + image: lscr.io/linuxserver/unifi-controller:latest + container_name: unifi + environment: + - PUID=1001 + - PGID=1001 + - TZ=Europe/Berlin + volumes: + - type: bind + source: ./config + target: /config + ports: + - 8443:8443 + - 3478:3478/udp + - 10001:10001/udp + - 8080:8080 + restart: unless-stopped |