Skip to content

Commit 72c529e

Browse files
Bot Updating Templated Files
1 parent 96b09fc commit 72c529e

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
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-wireguard/blob/alpine/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-wireguard/blob/alpine/.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-wireguard/blob/alpine/.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 & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The architectures supported by this image are:
5555
| :----: | :----: | ---- |
5656
| x86-64 || amd64-\<version tag\> |
5757
| arm64 || arm64v8-\<version tag\> |
58-
| armhf|| arm32v7-\<version tag\> |
58+
| armhf || arm32v7-\<version tag\> |
5959

6060
## Version Tags
6161

@@ -65,7 +65,6 @@ This image provides various versions that are available via tags. Please read th
6565
| :----: | :----: |--- |
6666
| latest || Stable releases with support for compiling Wireguard modules |
6767
| alpine || Stable releases based on Alpine *without* support for compiling Wireguard modules |
68-
6968
## Application Setup
7069

7170
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.
@@ -145,7 +144,7 @@ services:
145144
environment:
146145
- PUID=1000
147146
- PGID=1000
148-
- TZ=Europe/London
147+
- TZ=Etc/UTC
149148
- SERVERURL=wireguard.domain.com #optional
150149
- SERVERPORT=51820 #optional
151150
- PEERS=1 #optional
@@ -171,7 +170,7 @@ docker run -d \
171170
--cap-add=NET_ADMIN \
172171
-e PUID=1000 \
173172
-e PGID=1000 \
174-
-e TZ=Europe/London \
173+
-e TZ=Etc/UTC \
175174
-e SERVERURL=wireguard.domain.com `#optional` \
176175
-e SERVERPORT=51820 `#optional` \
177176
-e PEERS=1 `#optional` \
@@ -185,6 +184,7 @@ docker run -d \
185184
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
186185
--restart unless-stopped \
187186
lscr.io/linuxserver/wireguard:alpine
187+
188188
```
189189

190190
## Parameters
@@ -196,7 +196,7 @@ Container images are configured using parameters passed at runtime (such as thos
196196
| `-p 51820/udp` | wireguard port |
197197
| `-e PUID=1000` | for UserID - see below for explanation |
198198
| `-e PGID=1000` | for GroupID - see below for explanation |
199-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London |
199+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
200200
| `-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 |
201201
| `-e SERVERPORT=51820` | External port for docker host. Used in server mode. |
202202
| `-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

Comments
 (0)