Skip to content

Commit 6091954

Browse files
rootroot
authored andcommitted
Bot Updating README from template
1 parent 2768558 commit 6091954

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

README.md

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ The architectures supported by this image are:
3838

3939
| Architecture | Tag |
4040
| :----: | --- |
41-
| X86-64 | tbc |
42-
| arm64 | tbc |
43-
| armhf | tbc |
41+
| X86-64 | amd64-latest |
42+
| arm64 | arm64v8-latest |
43+
| armhf | arm32v6-latest |
4444

4545
## Usage
4646

@@ -51,8 +51,7 @@ Here are some example snippets to help you get started creating a container.
5151
```
5252
docker create \
5353
--name=ldap-auth \
54-
-e PUID=1001 \
55-
-e PGID=1001 \
54+
-e TZ=Europe/London \
5655
-p 8888:8888 \
5756
-p 9000:9000 \
5857
linuxserver/ldap-auth
@@ -70,9 +69,7 @@ services:
7069
ldap-auth:
7170
image: linuxserver/ldap-auth
7271
container_name: ldap-auth
73-
environment:
74-
- PUID=1001
75-
- PGID=1001
72+
- TZ=Europe/London
7673
ports:
7774
- 8888:8888
7875
- 9000:9000
@@ -88,21 +85,8 @@ Container images are configured using parameters passed at runtime (such as thos
8885
| :----: | --- |
8986
| `-p 8888` | the port for ldap auth daemon |
9087
| `-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 |
9389

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:
101-
102-
```
103-
$ id username
104-
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
105-
```
10690

10791
 
10892
## Application Setup
@@ -123,4 +107,5 @@ In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as bel
123107

124108
## Versions
125109

110+
* **14.09.18:** - Add TZ parameter, remove unnecessary PUID/PGID params
126111
* **11.08.18:** - Initial release.

0 commit comments

Comments
 (0)