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
Copy file name to clipboardExpand all lines: README.md
+7-22Lines changed: 7 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,9 @@ The architectures supported by this image are:
38
38
39
39
| Architecture | Tag |
40
40
| :----: | --- |
41
-
| X86-64 |tbc|
42
-
| arm64 |tbc|
43
-
| armhf |tbc|
41
+
| X86-64 |amd64-latest|
42
+
| arm64 |arm64v8-latest|
43
+
| armhf |arm32v6-latest|
44
44
45
45
## Usage
46
46
@@ -51,8 +51,7 @@ Here are some example snippets to help you get started creating a container.
51
51
```
52
52
docker create \
53
53
--name=ldap-auth \
54
-
-e PUID=1001 \
55
-
-e PGID=1001 \
54
+
-e TZ=Europe/London \
56
55
-p 8888:8888 \
57
56
-p 9000:9000 \
58
57
linuxserver/ldap-auth
@@ -70,9 +69,7 @@ services:
70
69
ldap-auth:
71
70
image: linuxserver/ldap-auth
72
71
container_name: ldap-auth
73
-
environment:
74
-
- PUID=1001
75
-
- PGID=1001
72
+
- TZ=Europe/London
76
73
ports:
77
74
- 8888:8888
78
75
- 9000:9000
@@ -88,21 +85,8 @@ Container images are configured using parameters passed at runtime (such as thos
88
85
| :----: | --- |
89
86
|`-p 8888`| the port for ldap auth daemon |
90
87
|`-p 9000`| the port for ldap login page |
91
-
|`-e PUID=1001`| for UserID - see below for explanation |
92
-
|`-e PGID=1001`| for GroupID - see below for explanation |
88
+
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London |
93
89
94
-
## User / Group Identifiers
95
-
96
-
When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
97
-
98
-
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
99
-
100
-
In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below:
0 commit comments