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 1, 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/domoticz"Get your own version badge on microbadger.com")
@@ -35,7 +29,7 @@ TLDR: Multi-arch support is changing from multiple repos to one repo per contain
35
29
36
30
## Supported Architectures
37
31
38
-
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).
32
+
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/).
39
33
40
34
Simply pulling `linuxserver/domoticz` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
41
35
@@ -68,8 +62,8 @@ Here are some example snippets to help you get started creating a container.
68
62
```
69
63
docker create \
70
64
--name=domoticz \
71
-
-e PUID=1001 \
72
-
-e PGID=1001 \
65
+
-e PUID=1000 \
66
+
-e PGID=1000 \
73
67
-e TZ=Europe/London \
74
68
-p 8080:8080 \
75
69
-p 6144:6144 \
@@ -105,8 +99,8 @@ services:
105
99
image: linuxserver/domoticz
106
100
container_name: domoticz
107
101
environment:
108
-
- PUID=1001
109
-
- PGID=1001
102
+
- PUID=1000
103
+
- PGID=1000
110
104
- TZ=Europe/London
111
105
volumes:
112
106
- <path to data>:/config
@@ -116,7 +110,6 @@ services:
116
110
- 1443:1443
117
111
devices:
118
112
- <path to device>:<path to device>
119
-
mem_limit: 4096m
120
113
restart: unless-stopped
121
114
```
122
115
@@ -129,8 +122,8 @@ Container images are configured using parameters passed at runtime (such as thos
129
122
|`-p 8080`| WebUI |
130
123
|`-p 6144`| Domoticz communication port. |
131
124
|`-p 1443`| Domoticz communication port. |
132
-
|`-e PUID=1001`| for UserID - see below for explanation |
133
-
|`-e PGID=1001`| for GroupID - see below for explanation |
125
+
|`-e PUID=1000`| for UserID - see below for explanation |
126
+
|`-e PGID=1000`| for GroupID - see below for explanation |
134
127
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London. |
135
128
|`-v /config`| Where Domoticz stores config files and data. |
136
129
|`--device <path to device>`| For passing through USB devices. |
@@ -141,11 +134,11 @@ When using volumes (`-v` flags) permissions issues can arise between the host OS
141
134
142
135
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
143
136
144
-
In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below:
137
+
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
0 commit comments