You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
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.'
12
12
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)!'
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Application Setup
62
62
@@ -154,7 +154,7 @@ services:
154
154
environment:
155
155
- PUID=1000
156
156
- PGID=1000
157
-
- TZ=Europe/London
157
+
- TZ=Etc/UTC
158
158
- URL=yourdomain.url
159
159
- VALIDATION=http
160
160
- SUBDOMAINS=www, #optional
@@ -181,7 +181,7 @@ docker run -d \
181
181
--cap-add=NET_ADMIN \
182
182
-e PUID=1000 \
183
183
-e PGID=1000 \
184
-
-e TZ=Europe/London \
184
+
-e TZ=Etc/UTC \
185
185
-e URL=yourdomain.url \
186
186
-e VALIDATION=http \
187
187
-e SUBDOMAINS=www, `#optional` \
@@ -197,6 +197,7 @@ docker run -d \
197
197
-v /path/to/appdata/config:/config \
198
198
--restart unless-stopped \
199
199
lscr.io/linuxserver/swag:latest
200
+
200
201
```
201
202
202
203
## Parameters
@@ -209,7 +210,7 @@ Container images are configured using parameters passed at runtime (such as thos
209
210
|`-p 80`| Http port (required for http validation and http -> https redirect) |
210
211
|`-e PUID=1000`| for UserID - see below for explanation |
211
212
|`-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). |
213
214
|`-e URL=yourdomain.url`| Top url you have control over (`customdomain.com` if you own it, or `customsubdomain.ddnsprovider.com` if dynamic dns). |
214
215
|`-e VALIDATION=http`| Certbot validation method to use, options are `http` or `dns` (`dns` method also requires `DNSPLUGIN` variable set). |
215
216
|`-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