Skip to content

Commit 7cd14e8

Browse files
Bot Updating Templated Files
1 parent a7954a6 commit 7cd14e8

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ trim_trailing_whitespace = false
1515
indent_style = space
1616
indent_size = 2
1717

18-
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
18+
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
1919
indent_style = space
2020
indent_size = 4
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Comment on invalid interaction
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
jobs:
7+
add-comment-on-invalid:
8+
if: github.event.label.name == 'invalid'
9+
permissions:
10+
issues: write
11+
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
12+
secrets: inherit

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-ldap-auth/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-ldap-auth/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
1212
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-ldap-auth/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/permissions.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Permission check
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/run'
6+
- '**/finish'
7+
jobs:
8+
permission_check:
9+
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
5656
| :----: | :----: | ---- |
5757
| x86-64 || amd64-\<version tag\> |
5858
| arm64 || arm64v8-\<version tag\> |
59-
| armhf|| arm32v7-\<version tag\> |
59+
| armhf || arm32v7-\<version tag\> |
6060

6161
## Application Setup
6262

@@ -79,7 +79,6 @@ services:
7979
image: lscr.io/linuxserver/ldap-auth:latest
8080
container_name: ldap-auth
8181
environment:
82-
- TZ=Europe/London
8382
- FERNETKEY= #optional
8483
- CERTFILE= #optional
8584
- KEYFILE= #optional
@@ -94,14 +93,14 @@ services:
9493
```bash
9594
docker run -d \
9695
--name=ldap-auth \
97-
-e TZ=Europe/London \
9896
-e FERNETKEY= `#optional` \
9997
-e CERTFILE= `#optional` \
10098
-e KEYFILE= `#optional` \
10199
-p 8888:8888 \
102100
-p 9000:9000 \
103101
--restart unless-stopped \
104102
lscr.io/linuxserver/ldap-auth:latest
103+
105104
```
106105

107106
## Parameters
@@ -112,7 +111,6 @@ Container images are configured using parameters passed at runtime (such as thos
112111
| :----: | --- |
113112
| `-p 8888` | the port for ldap auth daemon |
114113
| `-p 9000` | the port for ldap login page |
115-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London |
116114
| `-e FERNETKEY=` | Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications) |
117115
| `-e CERTFILE=` | Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon |
118116
| `-e KEYFILE=` | Point this to the private key file, matching the certificate file referred to in CERTFILE |

0 commit comments

Comments
 (0)