Skip to content

Instantly share code, notes, and snippets.

@olegchir
Last active June 4, 2022 13:45
Show Gist options
  • Save olegchir/c4720aa7d8ac1ffe6d0afdcf4010763f to your computer and use it in GitHub Desktop.
Save olegchir/c4720aa7d8ac1ffe6d0afdcf4010763f to your computer and use it in GitHub Desktop.

Revisions

  1. olegchir revised this gist Jun 4, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion wireguard-docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -13,7 +13,7 @@ services:
    - TZ=Europe/London
    - SERVERURL=172.123.123.123 # your server's IP, you can try "auto" instead
    - SERVERPORT=51820
    - PEERS=20 #optional
    - PEERS=20
    - PEERDNS=auto
    - INTERNAL_SUBNET=10.13.13.0
    - ALLOWEDIPS=0.0.0.0/0
  2. olegchir renamed this gist Jun 4, 2022. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. olegchir created this gist Jun 4, 2022.
    27 changes: 27 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    ---
    version: "2.1"
    services:
    wireguard:
    image: lscr.io/linuxserver/wireguard
    container_name: wireguard
    cap_add:
    - NET_ADMIN
    - SYS_MODULE
    environment:
    - PUID=1000
    - PGID=1000
    - TZ=Europe/London
    - SERVERURL=172.123.123.123 # your server's IP, you can try "auto" instead
    - SERVERPORT=51820
    - PEERS=20 #optional
    - PEERDNS=auto
    - INTERNAL_SUBNET=10.13.13.0
    - ALLOWEDIPS=0.0.0.0/0
    volumes:
    - ~/wireguard/config:/config
    - /lib/modules:/lib/modules
    ports:
    - 51820:51820/udp # you should open this on external firewall
    sysctls:
    - net.ipv4.conf.all.src_valid_mark=1
    restart: unless-stopped