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
{{ message }}
This repository was archived by the owner on Jan 7, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+22-18Lines changed: 22 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,6 @@ Find us at:
14
14
*[Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
15
15
*[Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018).
16
16
17
-
# PSA: Changes are happening
18
-
19
-
From August 2018 onwards, Linuxserver are in the midst of switching to a new CI platform which will enable us to build and release multiple architectures under a single repo. To this end, existing images for `arm64` and `armhf` builds are being deprecated. They are replaced by a manifest file in each container which automatically pulls the correct image for your architecture. You'll also be able to pull based on a specific architecture tag.
20
-
21
-
TLDR: Multi-arch support is changing from multiple repos to one repo per container image.
[](https://microbadger.com/images/linuxserver/unifi-controller"Get your own version badge on microbadger.com")
@@ -36,7 +30,7 @@ The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) Controller softwa
36
30
37
31
## Supported Architectures
38
32
39
-
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list).
33
+
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
40
34
41
35
Simply pulling `linuxserver/unifi-controller` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
42
36
@@ -58,8 +52,8 @@ Here are some example snippets to help you get started creating a container.
58
52
```
59
53
docker create \
60
54
--name=unifi-controller \
61
-
-e PUID=1001 \
62
-
-e PGID=1001 \
55
+
-e PUID=1000 \
56
+
-e PGID=1000 \
63
57
-p 3478:3478/udp \
64
58
-p 10001:10001/udp \
65
59
-p 8080:8080 \
@@ -101,8 +95,8 @@ services:
101
95
image: linuxserver/unifi-controller
102
96
container_name: unifi-controller
103
97
environment:
104
-
- PUID=1001
105
-
- PGID=1001
98
+
- PUID=1000
99
+
- PGID=1000
106
100
volumes:
107
101
- <path to data>:/config
108
102
ports:
@@ -114,7 +108,6 @@ services:
114
108
- 8843:8843
115
109
- 8880:8880
116
110
- 6789:6789
117
-
mem_limit: 4096m
118
111
restart: unless-stopped
119
112
```
120
113
@@ -132,8 +125,8 @@ Container images are configured using parameters passed at runtime (such as thos
132
125
|`-p 8843`| Unifi communication port |
133
126
|`-p 8880`| Unifi communication port |
134
127
|`-p 6789`| For throughput test |
135
-
|`-e PUID=1001`| for UserID - see below for explanation |
136
-
|`-e PGID=1001`| for GroupID - see below for explanation |
128
+
|`-e PUID=1000`| for UserID - see below for explanation |
129
+
|`-e PGID=1000`| for GroupID - see below for explanation |
137
130
|`-v /config`| All Unifi data stored here |
138
131
139
132
## User / Group Identifiers
@@ -142,11 +135,11 @@ When using volumes (`-v` flags) permissions issues can arise between the host OS
142
135
143
136
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
144
137
145
-
In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below:
138
+
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
0 commit comments