24 lines
868 B
Bash
24 lines
868 B
Bash
# User/group ID to run the container process as — match your host user (run: id)
|
|
WIREGUARD_PUID=1000
|
|
|
|
# Group ID to run the container process as — match your host group (run: id)
|
|
WIREGUARD_PGID=1000
|
|
|
|
# Timezone for the container — e.g. America/New_York, America/Chicago, UTC
|
|
WIREGUARD_TZ=America/Los_Angeles
|
|
|
|
# Public hostname or IP clients will connect to — must be reachable from the internet
|
|
WIREGUARD_SERVERURL=vpn.example.com
|
|
|
|
# Number of peers to generate, or a comma-separated list of names e.g. phone,laptop,tablet
|
|
WIREGUARD_PEERS=1
|
|
|
|
# DNS server pushed to peers — use "auto" for CoreDNS, or a specific IP e.g. 1.1.1.1
|
|
WIREGUARD_DNS=auto
|
|
|
|
# Internal VPN subnet — clients will get IPs from this range
|
|
WIREGUARD_SUBNET=192.168.100.0
|
|
|
|
# Linux username whose home directory holds the config volume (used in the volume path)
|
|
WIREGUARD_USERNAME=youruser
|