mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
307 B
19 lines
307 B
docker run -d \
|
|
--name=wireguard \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--cap-add=NET_ADMIN \
|
|
--cap-add=SYS_MODULE \
|
|
-e PUID=1000 \
|
|
-e PGID=1000 \
|
|
-e TZ=Europe/London \
|
|
-p 51820:51820/udp \
|
|
-v config:/config \
|
|
-v modules:/lib/modules \
|
|
--sysctl="net.ipv4.conf.all.src_valid_mark=1" \
|
|
ghcr.io/linuxserver/wireguard
|