Skip to content

Commit 7d12260

Browse files
Bot Updating Templated Files
1 parent a4b9e77 commit 7d12260

File tree

4 files changed

+16
-6
lines changed

4 files changed

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

.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-swag/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-swag/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-swag/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: 5 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

@@ -154,7 +154,7 @@ services:
154154
environment:
155155
- PUID=1000
156156
- PGID=1000
157-
- TZ=Europe/London
157+
- TZ=Etc/UTC
158158
- URL=yourdomain.url
159159
- VALIDATION=http
160160
- SUBDOMAINS=www, #optional
@@ -181,7 +181,7 @@ docker run -d \
181181
--cap-add=NET_ADMIN \
182182
-e PUID=1000 \
183183
-e PGID=1000 \
184-
-e TZ=Europe/London \
184+
-e TZ=Etc/UTC \
185185
-e URL=yourdomain.url \
186186
-e VALIDATION=http \
187187
-e SUBDOMAINS=www, `#optional` \
@@ -197,6 +197,7 @@ docker run -d \
197197
-v /path/to/appdata/config:/config \
198198
--restart unless-stopped \
199199
lscr.io/linuxserver/swag:latest
200+
200201
```
201202

202203
## Parameters
@@ -209,7 +210,7 @@ Container images are configured using parameters passed at runtime (such as thos
209210
| `-p 80` | Http port (required for http validation and http -> https redirect) |
210211
| `-e PUID=1000` | for UserID - see below for explanation |
211212
| `-e PGID=1000` | for GroupID - see below for explanation |
212-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
213+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
213214
| `-e URL=yourdomain.url` | Top url you have control over (`customdomain.com` if you own it, or `customsubdomain.ddnsprovider.com` if dynamic dns). |
214215
| `-e VALIDATION=http` | Certbot validation method to use, options are `http` or `dns` (`dns` method also requires `DNSPLUGIN` variable set). |
215216
| `-e SUBDOMAINS=www,` | Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this *exactly* to `wildcard` (wildcard cert is available via `dns` validation only) |

0 commit comments

Comments
 (0)