Skip to content

Commit a12af2b

Browse files
Bot Updating Templated Files
1 parent 0cbd7ad commit a12af2b

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.editorconfig

+1-1
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

.github/workflows/greetings.yml

+1-1
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-diskover/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-diskover/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-diskover/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/permissions.yml

+9
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

+4-3
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

@@ -133,7 +133,7 @@ docker run -d \
133133
--name=diskover \
134134
-e PUID=1000 \
135135
-e PGID=1000 \
136-
-e TZ=America/New_York \
136+
-e TZ=Etc/UTC \
137137
-e ES_HOST=elasticsearch \
138138
-e ES_PORT=9200 \
139139
-e ES_USER=elastic \
@@ -143,6 +143,7 @@ docker run -d \
143143
-v /path/to/diskover/data:/data \
144144
--restart unless-stopped \
145145
lscr.io/linuxserver/diskover:latest
146+
146147
```
147148

148149
## Parameters
@@ -154,7 +155,7 @@ Container images are configured using parameters passed at runtime (such as thos
154155
| `-p 80` | diskover Web UI |
155156
| `-e PUID=1000` | for UserID - see below for explanation |
156157
| `-e PGID=1000` | for GroupID - see below for explanation |
157-
| `-e TZ=America/New_York` | Specify a timezone to use EG America/New_York |
158+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
158159
| `-e ES_HOST=elasticsearch` | ElasticSearch host (optional) |
159160
| `-e ES_PORT=9200` | ElasticSearch port (optional) |
160161
| `-e ES_USER=elastic` | ElasticSearch username (optional) |

0 commit comments

Comments
 (0)