Skip to content

Commit

Permalink
Hardcode VPN LAN address due to silly Compose bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuronButter committed Sep 20, 2022
1 parent e9214a2 commit 4b1afc7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions stacks/htpc.yaml
Expand Up @@ -2,20 +2,17 @@ version: "3.4"
services:
gluetun:
image: qmcgaw/gluetun
devices:
- /dev/net/tun:/dev/net/tun
cap_add:
- NET_ADMIN
environment:
- VPN_SERVICE_PROVIDER={VPN_PROVIDER}
- VPN_TYPE=wireguard
- WIREGUARD_PRIVATE_KEY={WG_PRIVKEY}
- WIREGUARD_ADDRESSES={WG_ADDRESSES}
- WIREGUARD_ADDRESSES=10.1.0.0/16
- SERVER_COUNTRIES={WG_COUNTRY}
- TZ=${TZ}
volumes:
- ${CONFIG}/gluetun:/gluetun
privileged: true


prowlarr:
Expand Down

1 comment on commit 4b1afc7

@NeuronButter
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Due to this bug, the address must be hardcoded in. This fix should be reverted whenever that pull request is actually deployed and works

Please sign in to comment.