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-1
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-wireguard/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-wireguard/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-wireguard/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ The architectures supported by this image are:
55
55
| :----: | :----: | ---- |
56
56
| x86-64 | ✅ | amd64-\<version tag\>|
57
57
| arm64 | ✅ | arm64v8-\<version tag\>|
58
-
| armhf| ✅ | arm32v7-\<version tag\>|
58
+
| armhf| ✅ | arm32v7-\<version tag\>|
59
59
60
60
## Version Tags
61
61
@@ -65,7 +65,6 @@ This image provides various versions that are available via tags. Please read th
65
65
| :----: | :----: |--- |
66
66
| latest | ✅ | Stable releases with support for compiling Wireguard modules |
67
67
| alpine | ✅ | Stable releases based on Alpine *without* support for compiling Wireguard modules |
68
-
69
68
## Application Setup
70
69
71
70
During container start, it will first check if the wireguard module is already installed and loaded. Kernels newer than 5.6 generally have the wireguard module built-in (along with some older custom kernels). However, the module may not be enabled. Make sure it is enabled prior to starting the container.
@@ -152,7 +151,7 @@ services:
152
151
environment:
153
152
- PUID=1000
154
153
- PGID=1000
155
-
- TZ=Europe/London
154
+
- TZ=Etc/UTC
156
155
- SERVERURL=wireguard.domain.com #optional
157
156
- SERVERPORT=51820 #optional
158
157
- PEERS=1 #optional
@@ -180,7 +179,7 @@ docker run -d \
180
179
--cap-add=SYS_MODULE \
181
180
-e PUID=1000 \
182
181
-e PGID=1000 \
183
-
-e TZ=Europe/London \
182
+
-e TZ=Etc/UTC \
184
183
-e SERVERURL=wireguard.domain.com `#optional` \
185
184
-e SERVERPORT=51820 `#optional` \
186
185
-e PEERS=1 `#optional` \
@@ -195,6 +194,7 @@ docker run -d \
195
194
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
196
195
--restart unless-stopped \
197
196
lscr.io/linuxserver/wireguard:latest
197
+
198
198
```
199
199
200
200
## Parameters
@@ -206,7 +206,7 @@ Container images are configured using parameters passed at runtime (such as thos
206
206
|`-p 51820/udp`| wireguard port |
207
207
|`-e PUID=1000`| for UserID - see below for explanation |
208
208
|`-e PGID=1000`| for GroupID - see below for explanation |
209
-
|`-e TZ=Europe/London`|Specify a timezone to use EG Europe/London|
209
+
|`-e TZ=Etc/UTC`|specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).|
210
210
|`-e SERVERURL=wireguard.domain.com`| External IP or domain name for docker host. Used in server mode. If set to `auto`, the container will try to determine and set the external IP automatically |
211
211
|`-e SERVERPORT=51820`| External port for docker host. Used in server mode. |
212
212
|`-e PEERS=1`| Number of peers to create confs for. Required for server mode. Can also be a list of names: `myPC,myPhone,myTablet` (alphanumeric only) |
0 commit comments