Skip to content

Commit efc99ca

Browse files
Bot Updating Templated Files
1 parent 800b3e9 commit efc99ca

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
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
+12
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

+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-pyload-ng/blob/main/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-pyload-ng/blob/main/.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-pyload-ng/blob/main/.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

+5-5
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
## Version Tags
6262

@@ -66,7 +66,6 @@ This image provides various versions that are available via tags. Please read th
6666
| :----: | :----: |--- |
6767
| latest || Stable releases from pyLoad Next |
6868
| develop || Releases from pyload Next develop branch |
69-
7069
## Application Setup
7170

7271
Access the web interface at `http://your-ip:8000` the default login is:
@@ -91,7 +90,7 @@ services:
9190
environment:
9291
- PUID=1000
9392
- PGID=1000
94-
- TZ=Europe/London
93+
- TZ=Etc/UTC
9594
volumes:
9695
- /path/to/appdata/config:/config
9796
- /path/to/downloads:/downloads
@@ -108,13 +107,14 @@ docker run -d \
108107
--name=pyload-ng \
109108
-e PUID=1000 \
110109
-e PGID=1000 \
111-
-e TZ=Europe/London \
110+
-e TZ=Etc/UTC \
112111
-p 8000:8000 \
113112
-p 9666:9666 `#optional` \
114113
-v /path/to/appdata/config:/config \
115114
-v /path/to/downloads:/downloads \
116115
--restart unless-stopped \
117116
lscr.io/linuxserver/pyload-ng:latest
117+
118118
```
119119

120120
## Parameters
@@ -127,7 +127,7 @@ Container images are configured using parameters passed at runtime (such as thos
127127
| `-p 9666` | Click'n'Load port. |
128128
| `-e PUID=1000` | for UserID - see below for explanation |
129129
| `-e PGID=1000` | for GroupID - see below for explanation |
130-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London |
130+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
131131
| `-v /config` | pyLoad Configuration and files database |
132132
| `-v /downloads` | Destination of pyLoad downloads |
133133

0 commit comments

Comments
 (0)