mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
Compare commits
4 Commits
2505526f6a
...
4f9d6e2b05
Author | SHA1 | Date | |
---|---|---|---|
|
4f9d6e2b05 | ||
|
d374ea7a10 | ||
|
203a03c135 | ||
|
f4ec21d4b5 |
7
examples/arr-suite/.env
Normal file
7
examples/arr-suite/.env
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# see https://github.com/qdm12/gluetun-wiki for more details
|
||||||
|
|
||||||
|
VPN_SERVICE_PROVIDER=mullvad
|
||||||
|
VPN_TYPE=wireguard
|
||||||
|
WIREGUARD_PRIVATE_KEY=<PrivateKey>
|
||||||
|
WIREGUARD_ADDRESSES=<Subnet>
|
||||||
|
SERVER_CITIES=<Location>
|
|
@ -181,11 +181,11 @@ services:
|
||||||
environment:
|
environment:
|
||||||
# see https://github.com/qdm12/gluetun-wiki for more details
|
# see https://github.com/qdm12/gluetun-wiki for more details
|
||||||
# example envs based on https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/mullvad.md
|
# example envs based on https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/mullvad.md
|
||||||
- VPN_SERVICE_PROVIDER=mullvad # define the vpn provider
|
- VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER:-mullvad} # define the vpn provider
|
||||||
- VPN_TYPE=wireguard # define the vpn protocol to use
|
- VPN_TYPE=${VPN_TYPE:-wireguard} # define the vpn protocol to use
|
||||||
- WIREGUARD_PRIVATE_KEY=wOEI9rqqbDwnN8/Bpp22sVz48T71vJ4fYmFWujulwUU= # define your wireguard private key here
|
- WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY:?WIREGUARD_PRIVATE_KEY must be set} # define your wireguard private key here
|
||||||
- WIREGUARD_ADDRESSES=10.64.222.21/32 # define the ipv4 vpn network subnet here
|
- WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES:?WIREGUARD_ADDRESSES must be set} # define the ipv4 vpn network subnet here
|
||||||
- SERVER_CITIES=Paris # define the server cities
|
- SERVER_CITIES=${SERVER_CITIES:?SERVER_CITIES must be set} # define the server cities
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/arr-suite/configs/gluetun:/gluetun
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/arr-suite/configs/gluetun:/gluetun
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
Loading…
Reference in New Issue
Block a user